import React from 'react';

declare const generateOtp: (length?: number) => string;

interface OtpBoxProps {
    length?: number;
    onChange?: (otp: string) => void;
    style?: React.CSSProperties;
    inputStyle?: React.CSSProperties;
}
declare const OtpBox: React.FC<OtpBoxProps>;

export { OtpBox, generateOtp };
