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