import { ValueNode, ObjectValueNode } from 'graphql';
export declare function identity<T>(value: T): T;
export declare function ensureObject(value: any, ast?: ValueNode): object;
export declare function parseObject(ast: ObjectValueNode, variables: any): any;
export declare function parseLiteral(ast: ValueNode, variables: any): any;
