/** * Depending on the type of the response body received from the server, * the response content will be resolved with a different method. * * @internal */ export declare function createContentResolver(response: Response, type: 'arraybuffer' | 'blob' | 'json' | 'text'): () => Promise;