interface FetchWithRetryOptions { timeoutMs?: number; retries?: number; retryDelayMs?: number; signal?: AbortSignal; } export declare const fetchWithOptions: (url: string, options?: FetchWithRetryOptions) => Promise; export {};