import React from 'react';
import './otp-view.scss';
interface OTPInputProps {
    length?: number;
    disabled?: boolean;
    onComplete?: (otp: string) => void;
    onChange?: (otp: string) => void;
    className?: string;
    value?: string;
    onReset?: () => void;
}
declare const OTPInput: React.FC<OTPInputProps>;
export default OTPInput;
