import React from 'react'; export interface NumberInfoProps { title?: React.ReactNode | string; subTitle?: React.ReactNode | string; total?: React.ReactNode | string; status?: 'up' | 'down'; theme?: string; gap?: number; subTotal?: number; suffix?: string; style?: React.CSSProperties; } export default class NumberInfo extends React.Component {}