import * as React from 'react'; export type valueType = number | string; export type Formatter = false | 'number' | ((value: valueType, config?: FormatConfig) => React.ReactNode); export interface FormatConfig { formatter?: Formatter; decimalSeparator?: string; groupSeparator?: string; precision?: number; prefixCls?: string; } export interface NumberProps extends FormatConfig { value: valueType; } declare const StatisticNumber: React.FC; export default StatisticNumber;