import { OnInit, EventEmitter } from '@angular/core'; import { FormGroup } from '@angular/forms'; import { AuthenticationService } from '../../services/authentication.service'; export declare class AuthForgotPasswordComponent implements OnInit { private authenticationService; /** * Inputs & Outputs */ titleComponent?: string; userEmail: EventEmitter; forgotPasswordRequest: EventEmitter; forgotPasswordRequestError: EventEmitter; changeform: FormGroup; emailSend: boolean; errorEmailSend: boolean; validatedForm: boolean; constructor(authenticationService: AuthenticationService); ngOnInit(): void; forgorPassword(): void; showMessage(element: string, textMessage: string, disappear?: boolean): void; }