import { ApiError } from '../types'; export declare class ApiException extends Error { message: string; status: number; response: ApiError; headers: { [key: string]: any; }; constructor(message: string, status: number, response: ApiError, headers: { [key: string]: any; }); protected isApiException: boolean; static isApiException(obj: any): obj is ApiException; }