import { GqlParserTree, VariableDefinitionWithoutLoc } from "../Models/GqlParserTree"; export declare const parseGqlTree: (mainTree: GqlParserTree) => string; export declare const parseGqlTrees: (trees: GqlParserTree[]) => string; export declare const enrichFieldNodeWithVariables: (fieldTree: GqlParserTree, variableDefinitionsUpdate: (fn: (variableDefinitions: VariableDefinitionWithoutLoc[]) => VariableDefinitionWithoutLoc[]) => void) => GqlParserTree; export declare const enrichWholeTreeWithVars: (mainTree: GqlParserTree) => GqlParserTree; export declare const enrichGqlQueryWithAllVars: (query: string, schema: string) => string;