declare const SUPPORTED_NETWORKS: { 1: string; 11155111: string; 31337: string; 31611: string; 31612: string; }; export type EthereumChainId = keyof typeof SUPPORTED_NETWORKS; export type EthereumNetwork = (typeof SUPPORTED_NETWORKS)[EthereumChainId]; export declare function toNetwork(chainId: number): EthereumNetwork | undefined; export {}; //# sourceMappingURL=network.d.ts.map