import type { ExtractPropTypes } from 'vue'; import type Countdown from './countdown.vue'; export type TimeUnit = 'yyyy' | 'MM' | 'dd' | 'HH' | 'mm' | 'ss'; /** countdown: 按 value 时长倒计时;timer: 按 value 目标时间定时 */ export type CountdownMode = 'countdown' | 'timer'; export declare const countdownProps: { readonly units: import("ll-plus/es/utils").EpPropFinalized, unknown, unknown, () => TimeUnit[], boolean>; readonly value: import("ll-plus/es/utils").EpPropFinalized, unknown, unknown, number, boolean>; readonly mode: import("ll-plus/es/utils").EpPropFinalized, unknown, unknown, CountdownMode, boolean>; readonly active: import("ll-plus/es/utils").EpPropFinalized; readonly precision: import("ll-plus/es/utils").EpPropFinalized; readonly theme: import("ll-plus/es/utils").EpPropFinalized, unknown, unknown, "dark", boolean>; readonly title: import("ll-plus/es/utils").EpPropFinalized; readonly titleStyle: import("ll-plus/es/utils").EpPropFinalized>, unknown, unknown, () => {}, boolean>; readonly showConfetti: import("ll-plus/es/utils").EpPropFinalized; readonly control: import("ll-plus/es/utils").EpPropFinalized; }; export type CountdownProps = ExtractPropTypes; export declare const countdownEmits: { finish: () => boolean; }; export type CountdownEmits = typeof countdownEmits; export type CountdownInstance = InstanceType;