export default class NameApiError extends Error {
    catchedError: any;
    httpStatusCode: number;
    response: any;
    constructor(message: string, catchedError: any, httpStatusCode: number, response: any);
}
