interface IPropsOTP { boxNumber: number; boxSeparator: number; classContainer: string; classOTP: string; onlyNumbers: boolean; onValue: (e: string) => void; } declare const OTPComponent: ({ boxNumber, boxSeparator, classContainer, classOTP, onlyNumbers, onValue }: IPropsOTP) => JSX.Element; export default OTPComponent;