export declare const path: { resolve: (pathToResovle: any) => any; normalize: (pathArg: any) => any; isAbsolute: (pathArg: any) => boolean; join: () => any; relative: (from: any, to: any) => any; _makeLong: (path: any) => any; dirname: (path: any) => any; basename: (pathArg: any, ext: any) => any; extname: (pathArg: any) => any; format: (pathObject: any) => any; parse: (pathArg: any) => { root: string; dir: string; base: string; ext: string; name: string; }; sep: string; delimiter: string; win32: { normalize: (p: any) => any; }; posix: any; };