import { IFileCommand } from './interface';
export default class FileWriter {
    private commands;
    addCommand(command: IFileCommand): void;
    executeAll(): void;
}
