import { Navigation } from "../metadata"; /** * A path is a chain of navigations. */ export declare class Path { readonly property: Navigation; readonly next: Path; constructor(args: { property: Navigation; next?: Path; }); toString(): string; toDtoString(): string; }