/**
 * Interface for currency code to symbol mapping
 */
interface CurrencyMap {
    [key: string]: string;
}
/**
 * Mapping of currency codes to their corresponding symbols
 * Supports over 150 currencies worldwide
 */
export declare const currencyMap: CurrencyMap;
export {};
