import { InputHTMLAttributes } from 'react';
export interface OTPInputProps extends Omit<InputHTMLAttributes<HTMLInputElement>, '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<OTPInputProps & import('react').RefAttributes<HTMLDivElement>>;
export default OTPInput;
