import { NetworksType } from "./enums/networks-type"; export declare class NetworkService { static DEFAULT_NETWORK: NetworksType; constructor(); /** * Gets the network number */ getNetworkNumber(networkName: string): number; /** * Throw error is name not found * @param name The network name */ private throwNameNotFound; }