import type { OperationNode } from './operation-node.js';
import type { PrimitiveValueListNode } from './primitive-value-list-node.js';
import type { ValueListNode } from './value-list-node.js';
export type ValuesItemNode = ValueListNode | PrimitiveValueListNode;
export interface ValuesNode extends OperationNode {
readonly kind: 'ValuesNode';
readonly values: ReadonlyArray