import { RetryPolicy } from '../types.js';
export declare class DefaultRetryPolicy implements RetryPolicy {
    private backoffCalculator;
    private maxRetries;
    constructor(maxRetries?: number, jitter?: boolean);
    calculateDelay(retryCount: number): number;
    shouldRetry(error: Error, retryCount: number): boolean;
}
