/** * Rename with retry on transient EBUSY/EPERM/EACCES (observed on Windows * when a concurrent reader holds the target file open). */ export declare function retryRename(src: string, dst: string, attempts?: number): Promise;