export interface GetCurrencyTypes { code: string; name: string; symbol: string | boolean; } export declare function getCurrency(code: string): GetCurrencyTypes;