import { FileSystem } from './FileSystem';
/**
 * It's an implementation of the FileSystem interface which reads and writes directly to the real file system.
 *
 * @param caseSensitive
 */
declare function createRealFileSystem(caseSensitive?: boolean): FileSystem;
export { createRealFileSystem };
