export type Path = (string | number)[]; export declare function joinPathWithKey(path: Path, key: string | number): Path; export declare function getInitialPath(capturePaths: boolean): Path; export declare function toNormalizedKey(key: string): string; export declare function toNormalizedPath(path: Path): string;