import { FileSystem } from './FileSystem';
import { Path } from './Path';
export declare class RealFileSystem implements FileSystem {
    fileExists(path: Path): boolean;
    findFiles(pattern: string, basePath: Path): Path[];
    listDir(path: Path): Path[];
    readFile(path: Path): string;
    requireFile(path: Path): string;
}
