import { AxiosError, AxiosResponse } from "axios"; export declare class ResponseService { static getHTTPCode(response: AxiosResponse | AxiosError): number | undefined; static getServerCode(response: AxiosResponse): any; static isInHttpCodeRange(response: AxiosResponse | AxiosError, codes: Array): boolean; static isInServerCodeRange(response: AxiosResponse, codes: Array): boolean; static getServerTitle(response: AxiosResponse): any; static getServerMessage(response: AxiosResponse): any; }