declare class AxiosUtils { static TOKEN: string | null; static COMPANY_TOKEN: string | null; static PROJECT_TOKEN: string | null; static API: import("axios").AxiosInstance; private static createHeaders; static setToken(token: string): void; static setCompanyToken(companyToken: string): void; static setProjectToken(token: string): void; static get(path: string, params?: any): Promise>; static post(path: string, requestBody?: any): Promise>; static put(path: string, requestBody?: any): Promise>; static patch(path: string, requestBody?: any): Promise>; static delete(path: string): Promise>; } export default AxiosUtils;