import { InputHTMLAttributes } from 'react'; export interface OTPInputProps extends Omit, 'value' | 'onChange' | 'type' | 'maxLength' | 'className'> { length?: number; value?: string; onChange?: (value: string) => void; disabled?: boolean; error?: boolean; hint?: string; className?: string; label?: string; description?: string; inputType?: 'numeric' | 'alphanumeric' | 'any'; } export declare const OTPInput: import('react').ForwardRefExoticComponent>; export default OTPInput;