import { ethers } from "ethers"; interface ChainInfo { n: string; c: string; s: string; r: string; d?: number; cs?: string; } export declare const getProviderForChain: (chainId: string | Number) => Promise; export declare const getChainInfo: (chainId: string | Number) => Promise; export declare const getRpcUrl: (chainId: string | Number) => Promise; export declare const getSupportedChainIds: () => Promise; export declare const isChainSupported: (chainId: string | Number) => Promise; declare const _default: { getProviderForChain: (chainId: string | Number) => Promise; getChainInfo: (chainId: string | Number) => Promise; getRpcUrl: (chainId: string | Number) => Promise; getSupportedChainIds: () => Promise; isChainSupported: (chainId: string | Number) => Promise; }; export default _default;