import { CypherASTNode } from "../../CypherASTNode"; import type { Label } from "../../references/Label"; import type { PropertyRef } from "../../references/PropertyRef"; export declare class RemoveClause extends CypherASTNode { private readonly removeInput; constructor(parent: CypherASTNode | undefined, removeInput: Array); addParams(...params: Array): void; }