import { CurrencyCodes } from '../types/index.js'; export declare const conversionTypesLabels: Record; export declare const currencyConfig: Record; export declare const intlCurrency: (charge: number, currencyType: CurrencyCodes) => string; export declare const formatCurrencyWithInput: (charge: number, selectedCurrency: CurrencyCodes) => string; export declare function formatAmount(amount: number, decimal?: number): { integerAmount: string; decimalAmount: string; fullAmount: string; }; export declare function formatAmountWithCurrency(amount?: number, currency?: string): { integerAmount: string; decimalAmount: string; fullAmount: string; };