type FetchWithRetryOptions = RequestInit & { attempts?: number; baseDelayMs?: number; maxDelayMs?: number; }; declare const fetchWithRetry: (url: string, options?: FetchWithRetryOptions) => Promise; export { type FetchWithRetryOptions, fetchWithRetry };