Files
video-gen/video-gen-admin/node_modules/antd/lib/statistic/index.d.ts
T
2026-05-25 17:08:18 +08:00

18 lines
787 B
TypeScript

import type { CountdownProps } from './Countdown';
import Countdown from './Countdown';
import type { StatisticProps, StatisticSemanticClassNames, StatisticSemanticName, StatisticSemanticStyles } from './Statistic';
import Statistic from './Statistic';
import type { StatisticTimerProps } from './Timer';
import Timer from './Timer';
export type { CountdownProps, StatisticProps, StatisticSemanticClassNames, StatisticSemanticName, StatisticSemanticStyles, StatisticTimerProps, };
type CompoundedComponent = {
/**
* @deprecated Please use `Statistic.Timer` instead
*/
Countdown: typeof Countdown;
Timer: typeof Timer;
};
export type CompoundedStatistic = typeof Statistic & CompoundedComponent;
declare const _default: CompoundedStatistic;
export default _default;