import { FC } from 'react'; import { Color, Size } from './types'; declare type StatisticProps = { rounded?: boolean; fixed?: number; label: string; value: number; prefix?: string; suffix?: string; labelColor?: Color; labelSize?: Size; valueColor?: Color; valueSize?: Size; tooltip?: string; }; export declare const Statistic: FC; export {};