import { HttpClient } from '@angular/common/http'; import { IUser } from './IUser'; import { Observable } from 'rxjs'; export declare class UserService { private http; private addListPerm; private manageListPerm; private _user; readonly user: string; private _email; readonly email: string; private _login; readonly login: string; private _isAdmin; readonly isAdmin: boolean; constructor(http: HttpClient); Init(configUrl: string): Observable<{}>; getCurrentUserPermission(configUrl: string): Observable; canUserChangeSettings(configUrl: string, login: string): Observable; getCurrentUser(configUrl: string): Observable; }