export declare const format_path: (segments: (string | number)[]) => string; export declare const build_path: (parent_path: string, key: string | number) => string; export declare function parse_path(path: string): (string | number)[]; export declare function resolve_path(root: unknown, path: string): unknown;