import { Observable } from 'rxjs'; import { ApiService } from 'codefoxui'; import { LoginInitResponse, LoginRequest, LoginResponse } from '../interfaces/user.interfaces'; import * as i0 from "@angular/core"; export declare class UserService { apiService: ApiService; fullname: string | null; username: string | null; userId: number | null; workstation: string | null; login(loginRequest: LoginRequest): Observable; loginInit(): Observable; changePassword(oldPassword: string, newPassword: string): Observable<{}>; getConfirmationUsers(permission: string): Observable<{ users: string[]; }>; confirmUser(username: string, password: string): Observable<{ error: string | null; userId: number | null; }>; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }