/** * Custom fetch for openapi-fetch clients that retries network-level failures * (errors thrown by fetch itself: DNS, connection resets, timeouts) with * exponential backoff. HTTP error responses are returned untouched — those * are handled by the callers and the maintenance middleware. */ export declare const retryFetch: (input: Request) => Promise;