import { ECurrencyCode } from '@appfollow/geo-info/currency/types'; export type TFormatCurrencyOptions = Readonly<{ currency: ECurrencyCode; fraction?: number; }>; export declare function formatCurrency(value: number, locale: string | undefined, { currency, fraction }: TFormatCurrencyOptions): string;