import { HttpClient } from '@angular/common/http'; import { ChangeDetectorRef, EventEmitter, KeyValueDiffers, OnInit } from '@angular/core'; import { ActivatedRoute, Router } from '@angular/router'; import { TranslocoService } from '@jsverse/transloco'; import { VerificationTokenRequest } from '../../../entities/security-entities'; import { BaseFormService } from '../../../services/base-form.service'; import { SpiderlyMessageService } from '../../../services/spiderly-message.service'; import { BaseFormComponent } from '../../base-form/base-form.component'; import { SpiderlyFormGroup } from '../../spiderly-form-control/spiderly-form-control'; import * as i0 from "@angular/core"; export declare class VerificationWrapperComponent extends BaseFormComponent implements OnInit { protected differs: KeyValueDiffers; protected http: HttpClient; protected messageService: SpiderlyMessageService; protected changeDetectorRef: ChangeDetectorRef; protected router: Router; protected route: ActivatedRoute; protected translocoService: TranslocoService; protected baseFormService: BaseFormService; verificationTokenRequestFormGroup: SpiderlyFormGroup; email: string; onResendVerificationToken: EventEmitter; onCodeSubmit: EventEmitter; constructor(differs: KeyValueDiffers, http: HttpClient, messageService: SpiderlyMessageService, changeDetectorRef: ChangeDetectorRef, router: Router, route: ActivatedRoute, translocoService: TranslocoService, baseFormService: BaseFormService); ngOnInit(): void; initVerificationTokenRequestFormGroup(model: VerificationTokenRequest): void; codeSubmit(): void; resendVerificationToken(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }