import { FetchMiddleware } from '../http/fetcher.js';
import Client from '../client.js';
/**
 * This middleware injects a default Accept header.
 *
 * The list of content-types is generated from the Client's
 * 'contentTypeMap'.
 */
export default function (client: Client): FetchMiddleware;
