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