export type FetchHandler = (input: RequestInfo, init?: RequestInit) => Promise; /** * The default Fetch implementation, used to make a simple HTTP requests without any custom headers. This can be passed * to `HandlerChainBuilder` to form the basis for other Fetch implementations (e.g. with custom headers, which extract * the Response body, etc.) * * Has support for retries, client-side timeout, and navigating federated auth flows that may not support CORs requests. * * @internal */ export declare const defaultFetchHandlerFactory: { (): FetchHandler; token: "defaultFetchHandler"; dependencies: []; }; //# sourceMappingURL=defaultFetchHandler.d.ts.map