import type { GraphQLResolveInfo } from 'graphql'; export interface IRemoveFieldFromInfoOptions { path?: string; } export declare function removeFieldFromInfo(info: T, name: string, options?: IRemoveFieldFromInfoOptions): T;