declare const readFileContent: (filePath: string, cwd?: string) => Promise; declare const writeFileContent: (filePath: string, content: string, cwd?: string) => Promise; declare const deleteFile: (filePath: string, cwd?: string) => Promise; declare const fileExists: (filePath: string, cwd?: string) => Promise; declare const safeRename: (fromPath: string, toPath: string) => Promise; declare const renameFile: (fromPath: string, toPath: string, cwd?: string) => Promise; declare const isDirectoryEmpty: (dirPath: string) => Promise; declare const removeEmptyParentDirectories: (dirPath: string, rootDir: string) => Promise; export { deleteFile, fileExists, isDirectoryEmpty, readFileContent, removeEmptyParentDirectories, renameFile, safeRename, writeFileContent };