import type { CommonDescription } from './CommonDescription'; import type { CommonDisplayName } from './CommonDisplayName'; import type { CommonName } from './CommonName'; import type { Protocol } from './Protocol'; /** * an environment */ export declare type Environment = { name: CommonName; displayName?: CommonDisplayName; description: CommonDescription; serviceId: string; exposedProtocols: Array; };