import { CountdownProps } from 'antd';
import { FC } from 'react';
import { STATISTIC_COUNTDOWN } from '../../../Types';
export interface ICountdown {
    ctype: typeof STATISTIC_COUNTDOWN;
    props: CountdownProps;
}
declare const Countdown: FC<ICountdown>;
export default Countdown;
