export const fetch: typeof globalThis.fetch; export const Headers: { new (init?: HeadersInit | undefined): Headers; prototype: Headers; }; export const Request: { new (input: RequestInfo, init?: RequestInit | undefined): Request; prototype: 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; }; export default fetch; export { ReadableStream, Blob, FormData, File } from "./package.js"; //# sourceMappingURL=lib.node.d.ts.map