UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

20 lines (19 loc) 663 B
import * as React from 'react'; import Countdown from './Countdown'; import { valueType, FormatConfig } from './utils'; interface StatisticComponent { Countdown: typeof Countdown; } export interface StatisticProps extends FormatConfig { prefixCls?: string; className?: string; style?: React.CSSProperties; value?: valueType; valueStyle?: React.CSSProperties; valueRender?: (node: React.ReactNode) => React.ReactNode; title?: React.ReactNode; prefix?: React.ReactNode; suffix?: React.ReactNode; } declare const WrapperStatistic: React.FunctionComponent<StatisticProps> & StatisticComponent; export default WrapperStatistic;