import { OnInit, EventEmitter } from '@angular/core'; import { FormGroup } from '@angular/forms'; import { AuthenticationService } from '../../services/authentication.service'; import { Router } from '@angular/router'; export declare class AuthLoginComponent implements OnInit { private authenticationService; private router; loginUserForm: FormGroup; validatedForm: boolean; /** * Inputs & Outputs */ titleComponent?: string; redirectAfterTo?: string; redirectForgotPassword?: string; userLoginData: EventEmitter; userLoginError: EventEmitter; constructor(authenticationService: AuthenticationService, router: Router); ngOnInit(): void; loginUser(): void; showErrorMessage(element: string, textMessage: any, disappear?: boolean): void; }