///
import type { SxProps, Theme } from '@mui/material/styles';
interface CurrencySymbolProps {
currency?: string;
fontSize?: number;
color?: string;
sx?: SxProps;
}
declare function CurrencySymbol({ currency, fontSize, color, sx }: CurrencySymbolProps): import("react").JSX.Element;
export default CurrencySymbol;