import { Command } from '@my-devkit/core'; import { MonitoringAlertSeverityLevel } from '@we-scrum/enums'; export declare class CreateMonitoringAlertCommandAction { label: string; url: string; } export declare class CreateMonitoringAlertCommandData { category: string; label: string; value: string; } export declare class CreateMonitoringAlertCommand extends Command { environmentId: string; identificationNumber: string; title: string; subtitle: string; severityLevel: MonitoringAlertSeverityLevel; data: CreateMonitoringAlertCommandData[]; actions: CreateMonitoringAlertCommandAction[]; createdAt: Date; constructor(); }