import type { AlphaOptions } from '../types'; import type { Alpha } from '../alpha'; export interface RetryOptions { attempts: number; factor: number; maxTimeout: number; retryCondition: (err: Error) => boolean; } export interface RetryAlphaOptions extends Omit { __retryCount: number; retry: RetryOptions; } /** * Attempts to retry a failed request a configurable number of times. */ export declare const setup: (client: Alpha) => void;