export declare function withRetry<T>(url: string, options?: RequestInit, timeout?: number, retries?: number): Promise<T>;
export declare function timeoutRequest(url: string, options: RequestInit | undefined, timeout: number): Promise<Response>;
