import React from 'react'; import { useIntlFormattedCurrency } from '@preply/ds-core'; declare function CurrencyShort(...params: Parameters['formatCurrencyShort']>): React.JSX.Element; declare function CurrencyRounded(...params: Parameters['formatCurrencyRounded']>): React.JSX.Element; declare function CurrencyExplicit(...params: Parameters['formatCurrencyExplicit']>): React.JSX.Element; declare function CurrencyRange(...params: Parameters['formatCurrencyRange']>): React.JSX.Element; export declare const IntlFormattedCurrency: { /** * @returns currency with symbol and standard decimal places, e.g. "$123.45" */ CurrencyShort: typeof CurrencyShort; /** * @returns currency without decimal places, e.g. "$123" */ CurrencyRounded: typeof CurrencyRounded; /** * @returns currency with explicit currency code, e.g. "USD 123.45" */ CurrencyExplicit: typeof CurrencyExplicit; /** * @returns currency range with the selected variant, e.g. "$10 - $20" */ CurrencyRange: typeof CurrencyRange; }; export {}; //# sourceMappingURL=IntlFormattedCurrency.d.ts.map