import { IFileCommand } from './interface';
export default class WriteFileCommand implements IFileCommand {
    private filePath;
    private content;
    constructor(filePath: string, content: string);
    execute(): void;
}
