import { HttpService } from './http-service'; import { Authenticate } from './authenticate'; import { Observable } from 'rxjs'; export declare class VidaAdapterLoginService { private httpClient; private apiURL; private userProfile; private userInfo; constructor(httpClient: HttpService); authenticate(authenticate: Authenticate): Observable; setUserInformation(responseObject: any): void; ProfileDisplay(): any; logOut(): void; isAuthorized(): Observable<{}>; setAccessToken(token: any): void; getAccessToken(): string; setLoggedUser(user: any): Observable<{}>; isLoggednIn(): boolean; } export declare const API_GATEWAY: { SERVER: string; ACCESS_TOKEN_KEY: string; REFRESH_TOKEN_KEY: string; REFRESH_TOKEN_URL: string; LOGGED_USER_URL: string; LOGOUT_USER_URL: string; LOGGED_USER_VIDA_URL: string; USER_INFO_VIDA_URL: string; LOGGED_USER_VIDA_PROFILE: string; LOGGED_USER_PERMISSIONS: string; VIDAPLUS_LOGGED_USER_URL: string; VIDAPLUS_BASE_SECURITY_TOKEN: string; VIDAPLUS_ACEESS_TOKEN: string; VIDAPLUS_LOGGEDIN_TOKEN: string; VIDA_MIDDLE_LAYER: string; };