import { ChainType } from "../index"; export interface Token { type: ChainType; chainId: string; address: string; name: string; symbol: string; decimals: number; logoURI?: string; coingeckoId?: string; interchainTokenId?: string; volatility: Volatility; usdPrice?: number; axelarNetworkSymbol?: string; subGraphOnly?: boolean; subGraphIds?: string[]; feeOnTransfer?: boolean; isLpToken?: boolean; disabled?: boolean; originalAddress?: string; tokenProgramId?: string; } export declare enum Volatility { SUPER_STABLE = 0, STABLE = 1, HIGH_CAP = 2, VOLATILE = 3 }