import { RelationField, Context } from "../../types"; import { CypherStatement } from "../types"; import { Node } from "../../classes"; declare type CreateOrConnectInput = { where?: { node: Record; }; onCreate?: { node?: Record; edge?: Record; }; }; export declare function createConnectOrCreateAndParams({ input, varName, parentVar, relationField, refNode, context, }: { input: CreateOrConnectInput[] | CreateOrConnectInput; varName: string; parentVar: string; relationField: RelationField; refNode: Node; context: Context; }): CypherStatement; export {}; //# sourceMappingURL=create-connect-or-create-and-params.d.ts.map