import { NetworkIdType } from '../Network'; export declare const fiatCurrencies: Currency[]; export type Currency = { type: 'fiat' | 'token'; name: string; coinGeckoId?: string; symbol: string; symbolAfter?: boolean; address?: string; networkId?: NetworkIdType; }; export type PricedCurrency = Currency & { rateToUsd?: number; rateToBtc?: number; priceUsd?: number; priceBtc?: number; };