import { Chain, PublicClient, WalletClient } from 'viem'; export declare class EvmClient { readonly chain: Chain; readonly rpcs: string[]; constructor(chain: Chain, rpcs?: string[]); get chainId(): number; get chainCurrency(): string; get chainDecimals(): number; get chainExplorer(): string | undefined; getProvider(): PublicClient; getWsProvider(): PublicClient; getSigner(address: string): WalletClient; }