import { Country } from '../types/country'; export declare class CurrencyService { private static readonly CURRENCY_CONFIG; private static getCurrencyFromCountry; private static getCurrencyConfig; static formatToCurrency(valueInCents: number, country?: Country): string; static parseFromCurrency(formattedValue: string, country?: Country): number; static formatToInput(valueInCents: number, country?: Country): string; static isValidCents(value: number): boolean; static toCents(unitsValue: number): number; static getCurrencySymbol(country?: Country): string; static getCurrencyCode(country?: Country): string; }