export declare class HttpResponse { readonly code: number; readonly body?: string | undefined; readonly contentType?: string | undefined; constructor(code: number, body?: string | undefined, contentType?: string | undefined); } export declare class HttpErrorResponse extends HttpResponse { readonly message?: string | undefined; constructor(code: number, message?: string | undefined); } //# sourceMappingURL=HttpResponse.d.ts.map