declare type CurrencyProps = { abbreviate?: boolean; align?: 'center' | 'left' | 'right'; amount: string; aria?: { [key: string]: string; }; className?: string; dark?: boolean; data?: { [key: string]: string; }; decimals?: 'default' | 'matching'; emphasized?: boolean; id?: string; label?: string; size?: 'sm' | 'md' | 'lg'; symbol?: string; variant?: 'default' | 'light' | 'bold'; unit?: string; unstyled?: boolean; }; declare const Currency: (props: CurrencyProps) => JSX.Element; export default Currency;