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

9 lines
267 B
TypeScript

import * as React from 'react';
import type { FormatConfig, valueType } from './utils';
interface NumberProps extends FormatConfig {
value: valueType;
prefixCls?: string;
}
declare const StatisticNumber: React.FC<NumberProps>;
export default StatisticNumber;