amis-rpc-design/node_modules/antd/es/statistic/Number.d.ts

8 lines
243 B
TypeScript
Raw Normal View History

2023-10-07 19:42:30 +08:00
import * as React from 'react';
import type { FormatConfig, valueType } from './utils';
interface NumberProps extends FormatConfig {
value: valueType;
}
declare const StatisticNumber: React.FC<NumberProps>;
export default StatisticNumber;