import { EventEmitter } from '../../stencil-public-runtime'; import { User } from '../../interfaces/common.interface'; interface CountryCode { code: string; dialCode: string; name: string; } export declare class LoginWithPhoneCard { navigateToPage: EventEmitter; previousCard: EventEmitter; loginSuccess: EventEmitter; formSubmit: EventEmitter; phone: string; loading: boolean; otpId: string; otp: string[]; errorMessage: string; selectedCountry: CountryCode; isValidLength: boolean; private countryCodes; componentWillLoad(): void; private handleSubmit; private handleInputChange; phoneChangedHandler(newValue: string): void; private getMaxPhoneLength; private selectCountry; private inputRefs; private verifyOtp; private handleOTPSubmit; otpChangedHandler(newValue: string[]): void; private dispatchProfileUpdate; private handleOTPInput; private handleKeyDown; private handlePaste; private clearError; render(): any; } export {};