import type { FileSystem } from './file-system.js';
/**
 * It's an implementation of FileSystem interface which reads from the real file system, but write to the in-memory file system.
 */
export declare const passiveFileSystem: FileSystem;
