export declare function folderExists(dir: string): Promise; export declare function copyFolder({ source: source, destination, ignore, }: { source: string; destination: string; ignore?: string[]; }): Promise; export declare function delayAtLeast(promise: Promise, minMs: number): Promise; export declare function writeFileSafe(filePath: string, contents: string | Uint8Array): Promise; export declare function ensureFolder(dir: string): Promise; export declare function renameFilesInDirectory(dirPath: string, oldName: string, newName: string): Promise; export declare function renameDirectory(oldDirPath: string, newDirName: string): Promise;