import * as react from 'react'; import { F as FieldMode } from './inputs.types-vl3PAc4q.js'; import './types-8Sv0rCjw.js'; interface OtpInputProps { length?: number; value?: string; onChange?: (value: string) => void; disabled?: boolean; autoFocus?: boolean; className?: string; /** `"edit"` (default) renders the inputs; `"view"` renders the digits as text. */ mode?: FieldMode; } declare const OtpInput: react.ForwardRefExoticComponent>; export { OtpInput, type OtpInputProps };