import * as $dara from '@darabonba/typescript'; export declare class DeleteMetricRuleTargetsRequest extends $dara.Model { regionId?: string; /** * @remarks * The ID of the alert rule. * * This parameter is required. * * @example * ruleId-xxxxxx */ ruleId?: string; /** * @remarks * The resource IDs. * * This parameter is required. * * @example * 12345 */ targetIds?: string[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }