import { Chain, PublicClient } from 'viem'; type Network = { chain: Chain; jsonRpcProviderUrl: string; }; export declare const networks: Network[]; export declare const viemClients: PublicClient[]; export declare const getViemClientByChainId: (chainId: number) => PublicClient; export {};