import type { Currency } from '../types/datasets/currency';
export declare const formatCurrency: (amount: number, currency: Currency | undefined, locale: string) => string;
export declare const formatAmountWithCurrency: (amount: number, currency: Currency) => string | undefined;
