export declare function copyTemplate(templatePath: string, targetPath: string): Promise; export declare function writeFile(filePath: string, content: string): Promise; export declare function readFile(filePath: string): Promise; export declare function fileExists(filePath: string): Promise; export declare function createDirectory(dirPath: string): Promise; export declare function replaceInFile(filePath: string, replacements: Record): Promise;