import { FC } from 'react'; import { IglooTypographyProps } from '../typography'; import { StatisticProps } from 'antd'; interface Props extends StatisticProps { amount: number; level?: IglooTypographyProps['level']; } declare const Amount: FC; export default Amount;