import { OnInit, EventEmitter } from '@angular/core'; import { FormControl } from '@angular/forms'; import { Router } from '@angular/router'; import { RcEventBusService } from '../../rc-utils/rc-event-bus/rc-event-bus.service'; import { RcAuthService } from '../../rc-utils/rc-auth/rc-auth.service'; export declare class RcOtpComponent implements OnInit { private authService; private router; private eventBusService; otp: FormControl; otpSendMessage: string; errors: any[]; isInSendOtp: boolean; username: string; phoneNumber: string; recaptchaResponse: string; returnUrl: string; resend: string; otpSucceded: EventEmitter; constructor(authService: RcAuthService, router: Router, eventBusService: RcEventBusService); ngOnInit(): void; confirmOtp(claims: any): void; sendOtp(): void; }