import type { ValueNumberProps as NumberValueProps } from '../Number';
import type { CurrencyISO } from '../../constants/currencies';
export type ValueCurrencyProps = NumberValueProps & {
    /**
     * The currency of the component.
     */
    currency?: CurrencyISO | true;
};
declare function Currency(props: ValueCurrencyProps): import("react/jsx-runtime").JSX.Element;
export default Currency;
