export * from 'memfs'; export declare const versions: { memfs: string; build: string; }; export declare interface PathObject { root: string; dir: string; base: string; ext: string; name: string; } export declare interface Path { resolve(...pathSegments: string[]): string; normalize(path: string): string; isAbsolute(path: string): boolean; join(...paths: string[]): string; relative(from: string, to: string): string; dirname(path: string): string; basename(path: string, ext?: string): string; extname(path: string): string; format(pathObject: Partial): string; parse(path: string): PathObject; readonly sep: string; readonly delimiter: string; readonly win32: null; readonly posix: Path; } export const path: Path; export as namespace memfs;