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