import { HttpClient } from "@angular/common/http"; import { Observable } from "rxjs/Rx"; import { UserModel, EditProfile_ApiModel, ProfileViewModel } from "../models"; import { UserConfigurationService } from "./user-configuration.service"; import { Store } from "@ngrx/store"; export declare class UserService { private http; private store; private configurationService; responseCache: ProfileViewModel.Response; constructor(http: HttpClient, store: Store, configurationService: UserConfigurationService); getProfileInformation(): Observable; editProfile(data: EditProfile_ApiModel.Request): Observable; getInfo(data: ProfileViewModel.Request): Observable; is_role(role: string): Observable; }