import * as $dara from '@darabonba/typescript'; export declare class DeleteAlertContactGroupResponseBody extends $dara.Model { /** * @remarks * Deletion status. * * * true: Deletion successful. * * false: Deletion failed. * * @example * true */ status?: boolean; /** * @remarks * The message returned when execution fails. * * @example * Delete contact group resource failed. */ msg?: string; /** * @remarks * Alert contact group ID. * * @example * 12345 */ contactGroupId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DeleteAlertContactGroupResponse extends $dara.Model { headers?: { [key: string]: string; }; statusCode?: number; body?: DeleteAlertContactGroupResponseBody[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }