import { CSSProperties, FC } from 'react'; import { BoxProps } from '@mui/material/Box'; export interface OTPInputProps { value?: string; valueLength: number; onChange: (value: string) => void; size?: number | 'auto'; gap?: number; inputStyle?: CSSProperties; activeInputStyle?: CSSProperties; onFinish?: (value: string, target: HTMLInputElement) => void; containerProp?: BoxProps; onBack?: (target: HTMLElement) => void; readonly?: boolean; disabled?: boolean; isError?: boolean; } declare const OTPInput: FC; export default OTPInput;