export declare class FileWriter { writeFile(filePath: string, content: string): Promise; createDirectory(dirPath: string): Promise; fileExists(filePath: string): Promise; readFile(filePath: string): Promise; appendFile(filePath: string, content: string): Promise; deleteFile(filePath: string): Promise; copyFile(source: string, destination: string): Promise; writeFileWithBackup(filePath: string, content: string): Promise; writeFiles(files: { path: string; content: string; }[]): Promise; getStats(filePath: string): Promise; normalizeLineEndings(content: string, lineEnding?: "\n" | "\r\n"): string; } //# sourceMappingURL=fileWriter.d.ts.map