import * as $dara from '@darabonba/typescript'; export declare class DescribeEnvironmentFeatureRequest extends $dara.Model { /** * @remarks * The language. Valid values: en and zh. * * @example * en */ aliyunLang?: string; /** * @remarks * The environment ID. * * This parameter is required. * * @example * env-xxx */ environmentId?: string; /** * @remarks * The name of the feature. * * Valid values: * * * app-agent-pilot: App Pilot agent * * arms-cmonitor: ARMS CMonitor agent * * metric-agent: Prometheus agent * * This parameter is required. * * @example * metric-agent */ featureName?: string; /** * @remarks * The region ID. * * @example * cn-hangzhou */ regionId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }