export declare class BackoffCalculator {
    private jitter;
    constructor(jitter?: boolean);
    calculate(retryCount: number): number;
}
