import { InputAll } from './input_all'; import type { IFileSystem } from '../file_system'; export declare class FileInput extends InputAll { readonly fileSystem: IFileSystem; readonly path: string; constructor(fileSystem: IFileSystem, path: string); readAll(): string; }