import { CypherASTNode } from "../../CypherASTNode"; import type { Predicate } from "../../types"; export declare class Where extends CypherASTNode { private wherePredicate; constructor(parent: CypherASTNode | undefined, whereInput: Predicate); and(op: Predicate): void; }