import type { GraphQLInputType, GraphQLResolveInfo } from 'graphql'; export interface IAddArgumentToInfoOptions { path?: string; as_value?: boolean; } export declare function addArgumentToInfo(info: T, name: string, value: any, type: GraphQLInputType, options?: IAddArgumentToInfoOptions): T;