UNPKG

433 BTypeScriptView Raw
1import type { CountdownProps } from './Countdown';
2import Countdown from './Countdown';
3import type { StatisticProps } from './Statistic';
4import Statistic from './Statistic';
5export type { CountdownProps, StatisticProps };
6type CompoundedComponent = {
7 Countdown: typeof Countdown;
8};
9export type CompoundedStatistic = typeof Statistic & CompoundedComponent;
10declare const _default: CompoundedStatistic;
11export default _default;