import { AxiosResponse } from "axios"; import { ApiSupport } from './api.support'; export declare class ResponseSupport { protected apiSupport: ApiSupport; constructor(apiSupport: ApiSupport); success(response: AxiosResponse): Promise; notFound(response: AxiosResponse): Promise; bad(response: AxiosResponse): Promise; unauthorized(response: AxiosResponse): Promise; }