import type { EnvDefinition } from './env-definition'; import type { EnvService } from './services'; export declare class EnvServiceList { /** * environment */ readonly env: EnvDefinition; /** * services available on the env. */ readonly services: [string, EnvService][]; constructor( /** * environment */ env: EnvDefinition, /** * services available on the env. */ services: [string, EnvService][]); toObject(): Promise<{ env: { id: string; description: string | undefined; name: string | undefined; icon: string; }; services: { id: string; name: string | undefined; description: string | undefined; data: {} | undefined; }[]; }>; }