import * as react_jsx_runtime from 'react/jsx-runtime';
import React from 'react';

interface OtpInputProps {
    numberOfInputFields: number;
    inputBoxStyle?: React.CSSProperties;
    onchange?: (e: React.ChangeEvent<HTMLInputElement>, index: number) => void;
}
declare const OtpInput: ({ numberOfInputFields, inputBoxStyle, onchange, }: OtpInputProps) => react_jsx_runtime.JSX.Element;

export { OtpInput as default };
