import React from 'react';
import './otp-view.scss';
interface OTPViewProps {
    initialTimer?: number;
    className?: string;
    otpLength?: number;
    expiredTime?: number;
}
declare function OtpView({ initialTimer, className, otpLength: propOtpLength, expiredTime: propExpiredTime }: OTPViewProps): React.JSX.Element;
export default OtpView;
