import * as posix from "./posix"; import * as win32 from "./win32"; export { win32, posix }; export declare const sep: string; export declare const delimiter: string; export declare const resolve: typeof posix.resolve; export declare const normalize: typeof posix.normalize; export declare const isAbsolute: typeof posix.isAbsolute; export declare const join: typeof win32.join; export declare const relative: typeof win32.relative; export declare const _makeLong: typeof win32._makeLong; export declare const dirname: typeof win32.dirname; export declare const basename: typeof win32.basename; export declare const extname: typeof win32.extname; export declare const format: typeof win32.format; export declare const parse: typeof win32.parse;