import Cypher from "@neo4j/cypher-builder"; import type { AttributeAdapter } from "../../../../../schema-model/attribute/model-adapters/AttributeAdapter"; import { type QueryASTContext } from "../../QueryASTContext"; import { ParamInputField } from "../ParamInputField"; export declare class PushInputField extends ParamInputField { constructor({ attribute, attachedTo, inputValue, }: { attribute: AttributeAdapter; attachedTo: "node" | "relationship"; inputValue: unknown; }); getPredicate(queryASTContext: QueryASTContext): Cypher.Predicate | undefined; protected getRightExpression(queryASTContext: QueryASTContext): Exclude; } //# sourceMappingURL=PushInputField.d.ts.map