import * as Platform from "./Platform"; import { Request } from "./Request"; import { Response } from "./Response"; type Fetch = (request: Request.Like | string) => Promise; type GlobalFetch = (url: string, init: RequestInit) => Promise; export declare const fetch: Fetch & { create: (fetch: GlobalFetch) => Fetch; }; export {};