export declare function resolve(..._segments: string[]): string; export declare function join(..._segments: string[]): string; export declare function basename(p: string, ext?: string): string; export declare function dirname(_p: string): string; export declare function extname(p: string): string; export declare function isAbsolute(p: string): boolean; export declare function pathToFileURL(_p: string): URL; /** * Platform-specific path separator. In browser/Worker builds we mirror POSIX * (`/`) — these targets never read a real filesystem so the value is only * used for string parsing, and POSIX matches the runtime's URL conventions. */ export declare const sep = "/";