declare const globalFetch: typeof fetch; declare const globalHeaders: { new (init?: HeadersInit | undefined): Headers; prototype: Headers; }; declare const globalRequest: { new (input: RequestInfo, init?: RequestInit | undefined): Request; prototype: Request; }; declare const globalResponse: { new (body?: BodyInit | null | undefined, init?: ResponseInit | undefined): Response; prototype: Response; error(): Response; redirect(url: string | URL, status?: number | undefined): Response; }; export { globalFetch as fetch, globalHeaders as Headers, globalRequest as Request, globalResponse as Response }; //# sourceMappingURL=index.d.ts.map