declare type OtpTime = { startTime: number; time: number; isBlock?: boolean; }; declare const clearOtpCountTime: () => void; declare const setOtpCountBlockTime: (time: number | undefined, isBlock?: boolean) => void; declare const getOtpCountTimeOrigin: () => OtpTime | null; declare const setOtpCountTime: (time: number) => void; declare const resetOtpCountTime: () => void; declare const getOtpCountTime: () => OtpTime; declare const isBlockingTime: () => boolean; export { setOtpCountBlockTime, setOtpCountTime, resetOtpCountTime, clearOtpCountTime, getOtpCountTime, isBlockingTime, getOtpCountTimeOrigin, };