export declare type Path = number[]; declare function next(path: Path): Path; declare function previous(path: Path): Path; declare function isSibling(a: Path, b: Path): boolean; declare function compare(a: Path, b: Path): number; declare function equals(a: Path, b: Path): boolean; declare function endsBefore(a: Path, b: Path): boolean; declare function isAncestor(a: Path, b: Path): boolean; declare function isParent(a: Path, b: Path): boolean; export declare const Path: { compare: typeof compare; equals: typeof equals; next: typeof next; previous: typeof previous; endsBefore: typeof endsBefore; isAncestor: typeof isAncestor; isSibling: typeof isSibling; isParent: typeof isParent; }; export {};