import type { CustomFetch, HttpResponse, RetryConfig } from '../types/http.js'; /** * Performs a fetch request with retry logic and timeout support */ export declare function fetchWithRetry(args: { url: string; options?: RequestInit & { timeout?: number; }; retryConfig?: Partial; customFetch?: CustomFetch; }): Promise>;