import { HttpClient } from '@angular/common/http'; import { Store } from '@ngrx/store'; import { Observable } from 'rxjs'; import * as fromUserList from '../reducers/root.reducer'; import { Environment } from '@prutech/components'; import { UserListModel } from '../models/user'; import * as i0 from "@angular/core"; export declare class UserListService { private http; private store; private environment; user: Observable; userListLoading: Observable; userListErrorMessages: Observable; canAdd: Observable; constructor(http: HttpClient, store: Store, environment: Environment); dispatchLoadUserList(): void; loadUserList(): Observable<{ userList: UserListModel[]; canAdd: boolean; }>; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }