import { CookieService } from 'ngx-cookie-service'; import { Observable } from 'rxjs'; import { DevicewiseApiService } from './devicewise-api.service'; import * as DwResponse from './models/dwresponse'; import * as i0 from "@angular/core"; export declare class DevicewiseAuthService { private cookieService; private apiService; url: string; private loggedIn; constructor(cookieService: CookieService, apiService: DevicewiseApiService); private setLoginStatus; getLoginStatus(): boolean; getSessionInfo(): Observable; easyLogin(endpoint: string, username: string, password: string): Observable; login(endpoint: string, username: string, password: string): Observable; logout(): Observable; getSessionId(): string; getRole(): string; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }