8 lines
243 B
TypeScript
8 lines
243 B
TypeScript
|
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;
|