import { HttpieError } from "./HttpieCommonError"; import { RequestResponse } from "../request"; /** * @description Class to generate an Error with all the required properties from the response. * We attach these to the error so that they can be retrieved by the developer in a Catch block. */ export declare class HttpieOnHttpError> extends HttpieError { name: string; statusMessage: string; data: T["data"]; constructor(response: T); }