UNPKG

@upv/react-ui-core

Version:

**USHI Design System — Modern UI Component Library**

11 lines (10 loc) 238 B
import React from "react"; interface OTPProps { length?: number; onSubmit: (otp: string) => void; isLoading?: boolean; error?: string; resendOTP?: () => void; } export declare const OTP: React.FC<OTPProps>; export {};