import { FileSystem } from './FileSystem'; /** * It's an implementation of FileSystem interface which reads from the real file system, but write to the in-memory file system. * * @param memFileSystem * @param realFileSystem */ declare function createPassiveFileSystem(memFileSystem: FileSystem, realFileSystem: FileSystem): FileSystem; export { createPassiveFileSystem };