import { CurrencySymbolOptions } from "./types/currencySymbolOptions"; import { Iso4217Alpha3Code, Iso4217NumericCode } from "./types/iso4217"; import { Locale } from "./types/locale"; export declare function getCurrencySymbol(currencyCode: Iso4217Alpha3Code | Iso4217NumericCode, locale?: Locale): string; export declare function getCurrencySymbol(currencyCode: CurrencySymbolOptions, locale?: Locale): string;