export interface INetwork { cloudProvider: string; id: string; name: string; account: string; region: string; deprecated: boolean; } export declare class NetworkReader { static listNetworks(): PromiseLike; static listNetworksByProvider(cloudProvider: string): PromiseLike; }