import { GetOptions } from '../types'; import { FieldNode, FragmentDefinitionNode } from 'graphql'; import { GQLExecCtx } from '..'; export type GetOp = { get?: GetOptions; fnObserve?: { name: string | { $var: string; }; payload: any; }; }; export declare function createGet(ctx: GQLExecCtx, graphqlAst: FieldNode, fragments: Record, variables?: Record): GetOp;