import * as http from 'http'; /** * This response object is used to wrap the response from BSHC. It contains the {@link http.IncomingMessage} * which provides detailed information about response. Furthermore, it contains the parsed response . */ export declare class BshbResponse { private _incomingMessage; private _parsedResponse; constructor(_incomingMessage: http.IncomingMessage, _parsedResponse: T); /** * Get detailed information about HTTP response */ get incomingMessage(): http.IncomingMessage; /** * Get parsed response object */ get parsedResponse(): T; }