export interface CountdownProps extends React.ComponentProps<"div"> { endDate: Date; labelPosition?: "bottom" | "right"; variant?: "box" | "labelInline" | "labelUnder"; className?: string; /** * 显示文本, 可以本地化 * @default '{years:"years", months:"months", days:"days", hours:"hours", minutes:"minutes", seconds:"seconds"}' */ labels?: { years: string; months: string; days: string; hours: string; minutes: string; seconds: string; }; } export declare function Countdown(props: CountdownProps): import("react").JSX.Element;