export declare const DEFAULT_FILE_SYSTEM_RETRY_DELAYS_MS: readonly [10, 25, 50, 100, 200, 500, 1000, 2000, 4000]; export type FileSystemRetryOptions = { retryDelaysMs?: readonly number[]; wait?: (delayMs: number) => void; }; export declare function waitForFileSystemRetry(delayMs: number): void; export declare function isRetryableFileSystemError(error: unknown): boolean; export declare function runFileSystemOperationWithRetry(operation: () => T, options?: FileSystemRetryOptions): T; //# sourceMappingURL=file-system-retry.d.ts.map