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