import { GraphQLWhereArg, Context } from "../types"; import { Node } from "../classes"; declare function createWhereAndParams({ whereInput, varName, chainStr, node, context, recursing, }: { node: Node; context: Context; whereInput: GraphQLWhereArg; varName: string; chainStr?: string; recursing?: boolean; }): [string, any]; export default createWhereAndParams; //# sourceMappingURL=create-where-and-params.d.ts.map