/** * Write a file if it doesn't exist or is changed. * @param filePath The file path. * @param newContent The new content of the file. */ export declare function writeFileIfChanged(filePath: string, newContent: string): Promise;