declare type NetworkNames = 'MAINNET' | 'RINKEBY' | 'POLYGON' | 'MUMBAI' | 'ROPSTEN';
declare type NetworkIDs = '1' | '3' | '4' | '137' | '80001';
declare const Networks: Record<NetworkNames, NetworkIDs>;
export { Networks };
export type { NetworkIDs };
