linkmore-design
Version:
π πlmη»δ»ΆεΊγπ
12 lines (11 loc) β’ 412 B
TypeScript
import * as React from 'react';
import type { StatisticProps } from './Statistic';
import type { countdownValueType } from './utils';
interface CountdownProps extends StatisticProps {
value?: countdownValueType;
format?: string;
onFinish?: () => void;
onChange?: (value?: countdownValueType) => void;
}
declare const _default: React.NamedExoticComponent<CountdownProps>;
export default _default;