type FetchWithBackoffOptions = { retries?: number; backoffFactor?: number; initialDelay?: number; retryCondition?: (response: Response | null, error: any) => boolean; }; declare const FetchBackoff: (input: RequestInfo, init?: RequestInit, options?: FetchWithBackoffOptions) => Promise; export { FetchBackoff };