import type Path from 'node:path'; export declare const path: typeof Path; export default path; export declare function basename(path: any, ext?: any): any; export declare function extname(path: any): any; export declare function parse(path: any): { root: string; dir: string; base: string; ext: string; name: string; }; export declare function dirname(path: string): string; export declare function resolve(...args: any[]): string; export declare function normalize(path: string): string; export declare function isAbsolute(path: string): boolean; export declare function join(...args: string[]): string; export declare function relative(from: string, to: string): string; //# sourceMappingURL=index.d.ts.map