import { SafeWriteOptions, WriteResult, FileAction } from './types'; export declare function writeFileSafe(filePath: string, content: string, options?: SafeWriteOptions): Promise; export declare function appendMissingLines(filePath: string, lines: string[]): Promise; export declare function mergePackageJsonScripts(rootPath: string, scripts: Record): Promise; export declare function determineAction(filePath: string, fileExists: boolean): FileAction; //# sourceMappingURL=safe-write.d.ts.map