import { OperationNode } from './operation-node.js'; import { SelectionNode } from './selection-node.js'; export interface ReturningNode extends OperationNode { readonly kind: 'ReturningNode'; readonly selections: ReadonlyArray; } /** * @internal */ export declare const ReturningNode: Readonly<{ is(node: OperationNode): node is ReturningNode; create(selections: ReadonlyArray): ReturningNode; cloneWithSelections(returning: ReturningNode, selections: ReadonlyArray): ReturningNode; }>;