import React from 'react'; import type { StatisticProps } from 'antd/es/statistic/Statistic'; import Countdown from './Countdown'; interface StatisticComponent { Countdown: typeof Countdown; } export type { StatisticProps }; declare const _default: React.FC & StatisticComponent; export default _default;