import { BoxProps as BoxProps_2 } from '@mui/material/Box'; import { default as default_2 } from 'react'; import { TextFieldProps as TextFieldProps_2 } from '@mui/material/TextField'; declare type BaseMuiOtpInputProps = { value?: string; length?: number; autoFocus?: boolean; TextFieldsProps?: TextFieldProps | ((index: number) => TextFieldProps); onComplete?: (value: string) => void; validateChar?: (character: string, index: number) => boolean; onChange?: (value: string) => void; onBlur?: (value: string, isCompleted: boolean) => void; }; declare type BoxProps = Omit; export declare const MuiOtpInput: default_2.ForwardRefExoticComponent & default_2.RefAttributes>; export declare type MuiOtpInputProps = BoxProps & BaseMuiOtpInputProps; declare type TextFieldProps = Omit; export { }