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