import { ApiSupport } from './api.support'; export declare class RequestSupport { protected apiSupport: ApiSupport; constructor(apiSupport: ApiSupport); success(response: any): Promise; bad(response: any): Promise; notFound(_response: any): Promise; unauthorized(_response: any): Promise; protected removeAuthorization(): void; protected addAuthorization(): Promise; }