import { MonoTypeOperatorFunction, Scheduler } from 'rxjs'; export interface HttpRetryWithBackoff { retries: number; delayCalculator: (attempt: number) => number; scheduler: Scheduler | any; } export declare const httpRetryer: ({ retries, delayCalculator, scheduler, }: Partial) => MonoTypeOperatorFunction;