import React from 'react';
export interface OtpInputProps {
    numberOfInputFields: number;
    inputBoxStyle?: React.CSSProperties;
    onchange?: (e: React.ChangeEvent<HTMLInputElement>, index: number) => void;
}
declare const OtpInput: ({ numberOfInputFields, inputBoxStyle, onchange, }: OtpInputProps) => import("react/jsx-runtime").JSX.Element;
export { OtpInput };
export default OtpInput;
