import { OnInit } from '@angular/core'; import { AuthenticationService } from '../../services/authentication.service'; import { Router } from '@angular/router'; export declare class logOutComponent implements OnInit { private authenticationService; private router; constructor(authenticationService: AuthenticationService, router: Router); ngOnInit(): void; logOutUser(): void; }