type RequestOptions = RequestInit & { /** * Force format of headers to be a record of strings, e.g. { "Authorization": "Bearer 123" } * * Avoids complexity of needing to deal with `instanceof Headers`, which is not supported in some environments. */ headers?: Record; }; export declare function fetchWithRetry(url: string, options?: RequestOptions): Promise; export {}; //# sourceMappingURL=fetch-with-retry.d.ts.map