import { BufferedOutput } from './buffered_output'; import type { IFileSystem } from '../file_system'; export declare class FileOutput extends BufferedOutput { readonly fileSystem: IFileSystem; readonly path: string; readonly append: boolean; constructor(fileSystem: IFileSystem, path: string, append: boolean); flush(): void; }