import * as $dara from '@darabonba/typescript'; export declare class DeleteAlertRulesRequest extends $dara.Model { /** * @remarks * The IDs of the alert rules that you want to delete. The value is a JSON array, for example, `[123, 234]`. You can call the SearchAlertRules operation and view the `Id` parameter in the response to obtain the alert rule ID. For more information, see [SearchAlertRules](https://help.aliyun.com/document_detail/175825.html). * * This parameter is required. * * @example * [123, 234] */ alertIds?: string; /** * @remarks * The region ID. Default value: `cn-hangzhou`. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }