import { OnInit, EventEmitter } from '@angular/core'; import { FormGroup } from '@angular/forms'; import { AuthenticationService } from '../../services/authentication.service'; import { AngularFireAuth } from '@angular/fire/auth'; import { Router } from '@angular/router'; export declare class AuthProfileComponent implements OnInit { private authenticationService; private angularFireAuth; private router; profileUserForm: FormGroup; profileFirebaseUserForm: FormGroup; emailSend: boolean; errorUpdate: boolean; errorEmailSend: boolean; verifiedUser: boolean; validatedForm: boolean; userUpdated: boolean; userAuth: any; userDB: any; passwordUpdated: boolean; passwordUpdatedError: boolean; updateUser: boolean; firebaseUser: boolean; authenticationServiceErrorMessage: string; serviceErrorBackEndMessage: string; userProfileData: EventEmitter; userProfileUpdate: EventEmitter; userProfileError: EventEmitter; userProfileDataBase: EventEmitter; userProfileDataBaseUpdate: EventEmitter; userProfileDataBaseUpdateError: EventEmitter; userProfileDataBaseError: EventEmitter; constructor(authenticationService: AuthenticationService, angularFireAuth: AngularFireAuth, router: Router); ngOnInit(): void; changeView(resetForm?: boolean): void; emailToVerifySent(): void; VerifiedAccount(): void; goToHome(): void; getProfile(): void; editProfile(): void; editProfileFirebase(): void; changePassword(email: string): void; }