import { HttpResponseBase } from "./base"; export declare class HttpResponse extends HttpResponseBase { /** * The response body, or `null` if one was not returned. */ readonly body: T | null; /** * Construct a new `HttpResponse`. */ constructor(init?: { body?: T | null; headers?: any; status?: number; statusText?: string; url?: string; }); clone(): HttpResponse; clone(update: { headers?: any; status?: number; statusText?: string; url?: string; }): HttpResponse; clone(update: { body?: V | null; headers?: any; status?: number; statusText?: string; url?: string; }): HttpResponse; }