import React, { CSSProperties } from 'react'; import { StatisticProps } from 'antd'; import { IglooTypographyProps } from 'iglooform/es/typography'; import { TCurrencies } from './constants'; import './style'; export interface AmountWithUnitProps extends StatisticProps { unit?: string; amount: number; level?: IglooTypographyProps['level']; currency: TCurrencies; currencyPosition?: 'before' | 'after'; className?: string; style?: CSSProperties; } declare const AmountWithUnit: React.NamedExoticComponent; export default AmountWithUnit;