import { OnInit } from "@angular/core"; import { Observable } from "rxjs/Observable"; import { Store } from "@ngrx/store"; import { UserModel } from "../../models/user.model"; import * as FeatureReducer from "../../user.reducers"; import { UserConfigurationService } from "../../services/user-configuration.service"; import { UserModuleConfig } from "../../user.config"; export declare class ProfileEditContainerComponent implements OnInit { private store; private configService; userInforamation$: Observable; roles$: Observable; groups: Observable; config$: Observable; constructor(store: Store, configService: UserConfigurationService); ngOnInit(): void; updateProfile(data: any): void; }