export type CurrencyId = 'usd' | 'cad' | 'eur' | 'gbp' | 'jpy' | 'aud' | 'cny' | 'btc' | 'eth'; export type CurrencyOption = { id: CurrencyId; label: string; prefix: string; fixed: number; }; export declare const currencyOptions: CurrencyOption[];