/// import { BoxProps } from '@mui/material/Box'; export interface CurrencyAmountProps extends BoxProps<'span'> { amount: number; currency?: string; } declare function CurrencyAmount({ amount, currency, ...props }: CurrencyAmountProps): import("react").JSX.Element; export default CurrencyAmount;