import { Headers } from "./headers-polyfill.js"; export declare class Response { readonly ok: boolean; readonly status: number; readonly statusText: string; readonly headers: Headers; readonly url: string; bodyUsed: boolean; private readonly _body; constructor(body: any, options: { headers?: any; status?: number; statusText?: string; url: string; }); get body(): any; arrayBuffer(): Promise; text(): Promise; json(): Promise; blob(): Promise; } //# sourceMappingURL=response-polyfill.d.ts.map