import { type AmountProps } from './Amount';
export type CurrencyProps = Omit<AmountProps, 'percent'> & {
    percent?: never;
};
declare function Currency(props: CurrencyProps): import("react/jsx-runtime").JSX.Element;
declare namespace Currency {
    var _supportsSpacingProps: boolean;
}
export default Currency;
