import type { ResolvedRetryPolicy } from './retryPolicy.js'; export interface FetchWithRetryOptions { policy: ResolvedRetryPolicy; fetchImpl?: typeof fetch; signal?: AbortSignal; } export declare function fetchWithRetry(input: RequestInfo | URL, init: RequestInit | undefined, options: FetchWithRetryOptions): Promise; //# sourceMappingURL=fetchWithRetry.d.ts.map