import { FromNode } from './from-node.js';
import type { JoinNode } from './join-node.js';
import type { OperationNode } from './operation-node.js';
import type { ReturningNode } from './returning-node.js';
import type { WhereNode } from './where-node.js';
import type { WithNode } from './with-node.js';
import type { LimitNode } from './limit-node.js';
import type { OrderByNode } from './order-by-node.js';
import type { OrderByItemNode } from './order-by-item-node.js';
import type { ExplainNode } from './explain-node.js';
import { UsingNode } from './using-node.js';
import type { TopNode } from './top-node.js';
import type { OutputNode } from './output-node.js';
export interface DeleteQueryNode extends OperationNode {
readonly kind: 'DeleteQueryNode';
readonly from: FromNode;
readonly using?: UsingNode;
readonly joins?: ReadonlyArray