export declare function ejectAxios({ requestInterceptorId, responseInterceptorId, }: { requestInterceptorId: number; responseInterceptorId: number; }): void; export declare function initAxiosWithHeaders(res: any, url: string): { token: any; jsessionId: string; requestInterceptorId: number; responseInterceptorId: number; }; export declare function loginApi(url: string, username: string, password: string): Promise<{ token: string; jsessionId: string; requestInterceptorId: number; responseInterceptorId: number; }>; export declare function logoutApi(): Promise>; export declare function getActiveUserInfo(): Promise<{ userId: any; applicationMode: any; }>;