import { CypherASTNode } from "../../CypherASTNode"; import type { NodeRef } from "../../references/NodeRef"; import type { RelationshipRef } from "../../references/RelationshipRef"; import type { Variable } from "../../references/Variable"; /** @group Clauses */ export type DeleteInput = Array; export declare class DeleteClause extends CypherASTNode { private readonly deleteInput; private detachKeyword; constructor(parent: CypherASTNode, deleteInput: DeleteInput); detach(): void; noDetach(): void; }