import React from 'react'; import { FieldOTPClassesType, OTPInputFieldType } from '../../types'; declare type FieldOTPProps = { length: number; onChangeOTP: (OTP: string) => void; autoFocus?: boolean; type: OTPInputFieldType; disabled?: boolean; classes: FieldOTPClassesType; }; declare const _default: React.MemoExoticComponent<({ length, type, autoFocus, disabled, onChangeOTP, classes, ...rest }: FieldOTPProps) => JSX.Element>; export default _default;