import { FileSystem } from './FileSystem'; /** * It's an implementation of FileSystem interface which reads and writes to the in-memory file system. * * @param realFileSystem */ declare function createMemFileSystem(realFileSystem: FileSystem): FileSystem; export { createMemFileSystem };