/** * Copyright (c) 2018-2026 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author David Sehnal * @author Adam Midlik * @author Paul Pillot */ export declare function fetchRetry(url: string, timeout: number, retryCount: number, onRetry?: () => void): Promise; /** Like `fetch` but supports Google Cloud Storage (gs://) protocol. */ export declare function wrapFetch(url: string, init?: RequestInit): Promise;