import type { TRet } from "../index"; import { s_inspect } from "./symbol"; export declare class NodeResponse { resClone?: Response; _nres: number; constructor(body?: BodyInit | null, init?: ResponseInit, resClone?: Response); static error(): Response; static redirect(url: string | URL, status?: number): Response; static json(data: unknown, init?: ResponseInit): Response; private get res(); get headers(): any; get ok(): boolean; get redirected(): boolean; get status(): any; get statusText(): string; get type(): ResponseType; get url(): string; get body(): ReadableStream; get bodyUsed(): boolean; clone(): Response; arrayBuffer(): Promise; blob(): Promise; formData(): Promise; json(): Promise; text(): Promise; get [Symbol.hasInstance](): string; [s_inspect](depth: number, opts: TRet, inspect: TRet): string; [k: string | symbol]: TRet; }