import { AssetList, Chain, IBCData } from '@chain-registry/v2-types'; import { ChainRegistryFetcher } from './fetcher'; export interface ChainInfoOptions { chainName: string; fetcher: ChainRegistryFetcher; } export declare class ChainInfo { chainName: string; fetcher: ChainRegistryFetcher; protected _chain: Chain; protected _assetList: AssetList; protected _assetLists: AssetList[]; protected _ibcData: IBCData[]; constructor(options: ChainInfoOptions); refresh(): void; get chain(): Chain; get nativeAssetList(): AssetList; get assetLists(): AssetList[]; }