import type { Environment } from './environment'; /** * API for component development environment. */ export declare class EnvDefinition { /** * id of the env. */ readonly id: string; /** * env instance. */ readonly env: Environment; constructor( /** * id of the env. */ id: string, /** * env instance. */ env: Environment); /** * get icon of the env. */ get icon(): string; /** * get the name of the env. */ get name(): string | undefined; /** * get the description of the env. */ get description(): string | undefined; toObject(): { id: string; description: string | undefined; name: string | undefined; icon: string; }; }