import { NumberVariant } from '../utils/intlNumberFormatUtils/types'; export declare const getFormattedCurrency: ({ value, locale, variant, currencyOptions, currency, }: { value: number; locale: string; variant: NumberVariant; currency: string; currencyOptions?: Intl.NumberFormatOptions | undefined; }) => string;