import { Chain } from './chains'; export declare class ChainInfo { readonly id: Chain; readonly name: string; readonly testnet: boolean; readonly rpc: string; readonly explorer: string; readonly currency: { name: string; symbol: string; }; constructor(id: Chain, name: string, testnet: boolean, rpc: string, explorer: string, currency: { name: string; symbol: string; }); }