import { Volume } from 'memfs'; export declare class MemoryFileSystem { readonly volume: Volume; readonly fs: { [key: string]: any; }; constructor(); fill(folderPath: string): Promise; persist(folderPath: string): Promise; private createVolume(); private createFs(volume); }