export declare type ChainConfig = Record; export interface CustomChain { network: string; chainId: number; urls: EtherscanURLs; } export interface EtherscanUserConfig { apiKey?: string | Record; customChains?: CustomChain[]; } export interface EtherscanConfig { apiKey?: string | Record; customChains: CustomChain[]; } export interface EtherscanURLs { apiURL: string; browserURL: string; } interface EtherscanChainConfig { chainId: number; urls: EtherscanURLs; } export interface EtherscanNetworkEntry { network: string; urls: EtherscanURLs; } export {}; //# sourceMappingURL=types.d.ts.map