import { Node, Relationship } from "../../classes"; import { ConnectionWhereArg, Context } from "../../types"; declare function createConnectionWhereAndParams({ whereInput, context, node, nodeVariable, relationship, relationshipVariable, parameterPrefix, }: { whereInput: ConnectionWhereArg; context: Context; node: Node; nodeVariable: string; relationship: Relationship; relationshipVariable: string; parameterPrefix: string; }): [string, any]; export default createConnectionWhereAndParams; //# sourceMappingURL=create-connection-where-and-params.d.ts.map