import { OnInit } from '@angular/core'; import { FormBuilder, FormGroup } from '@angular/forms'; import { ActivatedRoute, Router } from '@angular/router'; import { AuthFacade, NotificationService } from 'af-services'; export declare class RegistrationFormComponent implements OnInit { private route; private router; private notify; private authFacade; private fb; captchaKey: any; private afterLoginRedirectTo; form: FormGroup; show: boolean; showConfirm: boolean; error: any; email: any; success: boolean; showCaptcha: boolean; private busy; constructor(route: ActivatedRoute, router: Router, notify: NotificationService, authFacade: AuthFacade, fb: FormBuilder, captchaKey: any, afterLoginRedirectTo: any); ngOnInit(): Promise; setDisabled(name: any, value: boolean): void; submit(callingControl: any): Promise; showHidePassword(): void; showHideConfirmPassword(): void; googleAuth(controlId: any): void; handleSuccessCaptcha($event: string): void; }