import { ElementRef, OnInit } from '@angular/core'; import { Router } from '@angular/router'; import { LayoutService } from '../../user-area-layout.service'; import { NavigationService } from '../../../../../services/navigation.service'; import { EnvironmentDescriptor } from '../../../../../../environment/types'; import { UserIdentityService } from '../../../../../../security/authentication/user-identity.service'; import { AuthenticationService } from '../../../../../../security/authentication/authentication.service'; export declare class PortalUserAreaUserStatusComponent implements OnInit { private router; private env; private userIdentity; private userAuthService; private layoutService; private navService; private eRef; showUserStatusPanel: boolean; userFullName: string; constructor(router: Router, env: EnvironmentDescriptor, userIdentity: UserIdentityService, userAuthService: AuthenticationService, layoutService: LayoutService, navService: NavigationService, eRef: ElementRef); ngOnInit(): void; clickInside(event: any): void; clickout(event: any): void; onSignoutClick(): void; private existingForDocumentClick; goToChangePass(): void; }