export declare function isAbsolute(path: string): boolean; export declare function normalize(path: string): string; export declare function join(...paths: Array): string; export declare function dirname(path: string): string; export declare function basename(p: string, ext?: string): string; export declare function absolute(path: string): string; export declare function extname(path: string): string; export declare function resolve(...args: any[]): string; export declare function relative(from: string, to: string): string;