import { Response } from '@angular/http'; /** * * * * { * "errors":[], * "entity":{}, * "messages":[], * "i18nMessagesMap":{} * } * */ export declare class ResponseView { private resp; private bodyJsonObject; private headers; constructor(resp: Response); header(headerName: string): string; readonly i18nMessagesMap: any; readonly contentlets: any; readonly entity: any; readonly errorsMessages: string; readonly status: number; readonly response: Response; existError(errorCode: string): boolean; }