PromoCursed/node_modules/antd/lib/statistic/Countdown.d.ts
2024-08-20 23:25:37 +04:00

11 lines
369 B
TypeScript

import * as React from 'react';
import type { StatisticProps } from './Statistic';
import type { valueType } from './utils';
export interface CountdownProps extends StatisticProps {
format?: string;
onFinish?: () => void;
onChange?: (value?: valueType) => void;
}
declare const _default: React.NamedExoticComponent<CountdownProps>;
export default _default;