import { ColumnNode } from './column-node.js';
import { IdentifierNode } from './identifier-node.js';
import type { OperationNode } from './operation-node.js';
export interface UniqueConstraintNode extends OperationNode {
readonly kind: 'UniqueConstraintNode';
readonly columns: ReadonlyArray