import type { ColumnUpdateNode } from './column-update-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 { FromNode } from './from-node.js';
import type { ExplainNode } from './explain-node.js';
import type { LimitNode } from './limit-node.js';
import type { TopNode } from './top-node.js';
import type { OutputNode } from './output-node.js';
import type { OrderByNode } from './order-by-node.js';
export interface UpdateQueryNode extends OperationNode {
readonly kind: 'UpdateQueryNode';
readonly table?: OperationNode;
readonly from?: FromNode;
readonly joins?: ReadonlyArray