import { CurrentTime, FormatedCountdown } from './Countdown.types'; /** * 解析时间,将结束时间戳拆分为剩余时间对象 */ export declare const parseTime: (endTime: number, offsetTime: number) => CurrentTime; /** * 格式化倒计时,将剩余时间格式化为指定格式,并拆分位各个时间模块 */ export declare const formatCountdown: (duration: number, format: string) => FormatedCountdown;