///
import { CurrencyCode, ExchangeRateMap, Price } from '../../../core/pricing';
import type { TextLabelProps } from '../TextLabel/TextLabel';
type PriceTextLabelProps = Omit & {
price: Price;
useFriendlyName?: 'none' | 'use';
useMinus?: 'none' | 'use';
};
declare function PriceTextLabel({ price, useFriendlyName, useMinus, selectedCurrency, exchangeRates, userCountryCode, ...args }: PriceTextLabelProps & {
selectedCurrency?: CurrencyCode;
exchangeRates?: ExchangeRateMap;
userCountryCode?: string;
}): JSX.Element;
export default PriceTextLabel;