import { OperationNode } from './operation-node.js'; export interface DefaultInsertValueNode extends OperationNode { readonly kind: 'DefaultInsertValueNode'; } /** * @internal */ export declare const DefaultInsertValueNode: Readonly<{ is(node: OperationNode): node is DefaultInsertValueNode; create(): DefaultInsertValueNode; }>;