export interface Currency {
    name: string;
    code: string;
}
export declare const SupportedCurrency: Currency[];
