import React from 'react'; interface Props { /** * 目标日期 */ targetDate?: string; /** * format */ format: (data: { d: string; h: string; m: string; s: string; diff: number; isEnd: boolean; }) => string; /** * 样式 */ style?: React.CSSProperties; /** * 类名 */ className?: string; /** * 自动停止 */ autoStop?: boolean; } declare const _default: ({ targetDate, format, style, className, autoStop }: Props) => React.JSX.Element; export default _default;