//#region extensions/browser/test-fetch.d.ts type FetchPreconnectOptions = { dns?: boolean; tcp?: boolean; http?: boolean; https?: boolean; }; type FetchWithPreconnect = { preconnect: (url: string | URL, options?: FetchPreconnectOptions) => void; __klawAcceptsDispatcher: true; }; declare function withBrowserFetchPreconnect(fn: T): T & FetchWithPreconnect; declare function withBrowserFetchPreconnect(fn: T): T & FetchWithPreconnect & typeof fetch; //#endregion export { withBrowserFetchPreconnect };