Number.d.ts 238 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 import * as React from 'react'; import { valueType, FormatConfig } from './utils'; interface NumberProps extends FormatConfig { value: valueType; } declare const StatisticNumber: React.FC<NumberProps>; export default StatisticNumber;