type OTPInputProps = { className?: string; maxCodeLength?: number; otpValues: string[]; setOtpValues: React.Dispatch>; hasMaxAttemptsBeenReached?: boolean; onVerifyCode: () => void; isLoading?: boolean; hasError?: boolean; }; export declare const OTPInput: ({ className, maxCodeLength, otpValues, hasMaxAttemptsBeenReached, setOtpValues, onVerifyCode, isLoading, hasError, }: OTPInputProps) => import("react/jsx-runtime").JSX.Element; export {};