import { OnInit } from '@angular/core'; import { FormGroup, FormBuilder } from '@angular/forms'; import { TranslateService } from '@ngx-translate/core'; import { HttpClient } from '@angular/common/http'; import { SessionService } from './session.service'; import { ConfigService } from './config.service'; export declare class ProfileComponent implements OnInit { private _formBuilder; translate: TranslateService; private _http; private _config; profileForm: FormGroup; errorMessage: string; userId: string; languages: { value: string; display: string; }[]; autoLogouts: { value: number; display: string; }[]; constructor(_formBuilder: FormBuilder, translate: TranslateService, sessionService: SessionService, _http: HttpClient, _config: ConfigService); ngOnInit(): void; update(): void; }