import _path from "node:path"; export declare let path: _path.PlatformPath; export declare let resolve: (...paths: string[]) => string; export declare let join: (...paths: string[]) => string; export declare let dirname: (path: string) => string; export declare let basename: (path: string, suffix?: string) => string; export declare let extname: (path: string) => string; export declare let relative: (from: string, to: string) => string; export declare let normalize: (path: string) => string; export declare let isAbsolute: (path: string) => boolean; export declare let sep: "/" | "\\"; export declare let delimiter: ";" | ":"; export declare let parse: (path: string) => _path.ParsedPath;