import { type SupportedLocale } from '../locales';
interface CurrencyOptions {
    currency: string;
    decimals?: number;
    showSymbol?: boolean;
    showCode?: boolean;
    stripZeros?: boolean;
}
export declare function formatCurrency(value: number, locale: SupportedLocale, options: CurrencyOptions): string;
export {};
