import { ICallback } from './types/callback.js'; export declare function withRetry(operation: (cb: ICallback) => void, options: { maxAttempts?: number; retryDelay?: number; shouldRetry?: (err: Error) => boolean; } | undefined, callback: ICallback): void; //# sourceMappingURL=with-retry.d.ts.map