import { OnInit, EventEmitter } from '@angular/core'; import { AuthenticationService } from '../../services/authentication.service'; import { Router } from '@angular/router'; export declare class AuthVerifyComponent implements OnInit { private authenticationService; private router; /** * Inputs & Outputs */ userProfileData: EventEmitter; userProfileError: EventEmitter; userProfileVerify: EventEmitter; forwardedMail: EventEmitter; forwardedMailError: EventEmitter; titleComponent?: string; redirectIfVerified?: string; emailSend: boolean; errorUpdate: boolean; errorEmailSend: boolean; status: boolean; userId: string; userVerified: boolean; verifiedAccount: boolean; authenticationServiceErrorMessage: string; constructor(authenticationService: AuthenticationService, router: Router); ngOnInit(): void; getProfile(verifiedAccount?: boolean): void; showMessage(element: string, textMessage: any, disappear?: boolean): void; emailToVerifySent(): void; VerifiedAccount(): void; }