import * as $dara from '@darabonba/typescript'; export declare class DeleteEnvironmentFeatureRequest extends $dara.Model { /** * @remarks * The ID of the environment. * * This parameter is required. * * @example * env-xxx */ environmentId?: string; /** * @remarks * The feature name. Valid values: app-agent-pilot, metric-agent, ebpf-agent, and service-check. * * This parameter is required. * * @example * metric-agent */ featureName?: string; /** * @remarks * The region ID. Valid values: cn-beijing and cn-hangzhou. * * @example * cn-hangzhou */ regionId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }