import type { EthereumNetwork } from "../types"; import type { EthereumConfig } from "./type"; export declare const configDictionary: Record; export declare const ethereumNetworks: string[]; export declare function getEthereumConfig(env: EthereumNetwork): EthereumConfig; export type GetConfigByChainId = () => Promise; export declare function getNetworkConfigByChainId(chainId: number): EthereumConfig;