import { default as React } from 'react'; import { SxProps } from '@mui/material/styles'; import { TypographyProps } from '@mui/material/Typography'; interface CurrencyTextProps extends TypographyProps { isIncome?: boolean; amount: number | string; bold?: boolean; color?: string; formatString?: string; sx?: SxProps; symbol?: string; variant?: TypographyProps['variant']; } export declare const CurrencyText: React.FC; export {};