import type { PathVariable } from "../../references/Path"; import type { CypherCompilable } from "../../types"; import { PathAssign } from "../PathAssign"; import type { Pattern } from "../Pattern"; import type { QuantifiedPattern } from "./QuantifiedPattern"; /** * @group Patterns */ export declare class QuantifiedPath implements CypherCompilable { private readonly patterns; constructor(...patterns: Array); assignTo(variable: PathVariable): PathAssign; private getRemainingPatternsString; }