import { OnInit } from '@angular/core'; import { AuthenticationService } from '../../../../security/authentication/authentication.service'; import { NavigationService } from '../../../services/navigation.service'; export declare class PortalLoginAreaLayoutComponent implements OnInit { private authService; private navService; fullName: string; authenticated: boolean; constructor(authService: AuthenticationService, navService: NavigationService); ngOnInit(): Promise; onSignoutClick(): void; }