import { StatisticProps } from 'antd';
import { FC } from 'react';
import { STATISTIC } from '../../Types';
export interface IStatistic {
    ctype: typeof STATISTIC;
    props: StatisticProps;
}
declare const Statistic: FC<IStatistic>;
export default Statistic;
