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