import { ResolveTree } from "graphql-parse-resolve-info"; import { Node } from "../classes"; import { Context, RelationField } from "../types"; declare function createInterfaceProjectionAndParams({ resolveTree, field, context, node, nodeVariable, parameterPrefix, }: { resolveTree: ResolveTree; field: RelationField; context: Context; node: Node; nodeVariable: string; parameterPrefix?: string; }): { cypher: string; params: Record; }; export default createInterfaceProjectionAndParams; //# sourceMappingURL=create-interface-projection-and-params.d.ts.map