import { ASMApiService } from './asmApi'; import { IAlert } from '../model/deploymentDescriptor'; export declare class ASMAlertService extends ASMApiService { private _recipients; constructor(debug?: boolean); init(all?: boolean): Promise; getInstances(): Promise; getRecipients(): Promise; findRecipient(alert: IAlert): any; createAlert(type: string, target_ids: number[], recipient_ids: number[], check_ids: number[], severity: string): Promise; updateCheckAlerts(checkId: number, alerts: IAlert[]): Promise; findCheckAlerts(checkId: number): any[]; }