import { OnInit } from '@angular/core'; import { Router } from '@angular/router'; import { AuthService } from '../../services/auth.service'; import { EnvironmentManager } from '../../../data-access/services/environment-manager.service'; export declare class AuthControlPanelComponent implements OnInit { env: EnvironmentManager; private auth; private router; currentUser: any; constructor(env: EnvironmentManager, auth: AuthService, router: Router); ngOnInit(): void; logOut(): void; }