export declare type Currency = {
    code: string;
    symbol: string;
    name: string;
};
export declare const SUPPORTED_CURRENCIES: Currency[];
