import { UnitConfig, UnitGroupConfig } from './types'; type CurrencyUnits = 'aud' | 'cad' | 'chf' | 'cny' | 'eur' | 'gbp' | 'hkd' | 'inr' | 'jpy' | 'krw' | 'nok' | 'nzd' | 'sek' | 'sgd' | 'usd'; export type CurrencyFormatOptions = { unit: CurrencyUnits; decimalPlaces?: number; }; export declare const CURRENCY_GROUP_CONFIG: UnitGroupConfig; export declare const CURRENCY_UNIT_CONFIG: Readonly>; export declare function formatCurrency(value: number, { unit, decimalPlaces }: CurrencyFormatOptions): string; export {}; //# sourceMappingURL=currency.d.ts.map