import { OnInit } from '@angular/core'; import { ActivatedRoute, Router } from '@angular/router'; import { AccountService } from '../../shared/Services/AccountService.service'; import { AuthService, UtilityService } from '@bnsights/bbsf-utilities'; import { FormOptions, TextBoxOptions } from '@bnsights/bbsf-controls'; import { FormGroup } from '@angular/forms'; import { Observable } from 'rxjs'; import * as i0 from "@angular/core"; export declare class VerifyTwoFAComponent implements OnInit { private activatedRoute; private accountService; utilityService: UtilityService; private router; private authService; userID: string; verify2FAForm: FormGroup<{}>; verify2FAFormOptions: FormOptions; otpCode: TextBoxOptions; duration: number; timeLeft: number; interval: any; timerOn: boolean; timerCounter: number; constructor(activatedRoute: ActivatedRoute, accountService: AccountService, utilityService: UtilityService, router: Router, authService: AuthService); ngOnInit(): void; ngOnDestroy(): void; getVerify2FAModel: () => any[]; getVerify2FAFunction: (model: any) => Observable; onSuccessHandler: (result: any) => Promise; resendOTP(): void; get minutes(): string; get seconds(): string; startTimer(duration: number): void; clearTimer(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }