import React from 'react'; import { StatisticProps } from 'antd'; import './index.less'; interface StatisticExtraProps { titlePosition?: 'top' | 'bottom'; } declare const Statistic: { ({ className, valueStyle, titlePosition, ...props }: StatisticExtraProps & StatisticProps): React.JSX.Element; Countdown: ({ className, valueStyle, titlePosition, ...props }: StatisticExtraProps & StatisticProps) => React.JSX.Element; }; export { Statistic };