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 AuthForgotComponent implements OnInit { private authenticationService; private router; changeform: FormGroup; emailSend: boolean; errorEmailSend: boolean; validatedForm: boolean; userEmail: EventEmitter; forgotPasswordRequest: EventEmitter; forgotPasswordRequestError: EventEmitter; constructor(authenticationService: AuthenticationService, router: Router); ngOnInit(): void; forgorPassword(): void; goToHome(): void; }