import type { AliasNode } from './alias-node.js';
import type { JoinNode } from './join-node.js';
import type { OperationNode } from './operation-node.js';
import type { OutputNode } from './output-node.js';
import type { ReturningNode } from './returning-node.js';
import type { TableNode } from './table-node.js';
import type { TopNode } from './top-node.js';
import { WhenNode } from './when-node.js';
import type { WithNode } from './with-node.js';
export interface MergeQueryNode extends OperationNode {
readonly kind: 'MergeQueryNode';
readonly into: TableNode | AliasNode;
readonly using?: JoinNode;
readonly whens?: ReadonlyArray