import { SystemHealthAlertBaseDto } from './base.dto'; import { LOG_PRIORITY, OrganizationEntity } from '../..'; import { ALERT_ENTITY_TARGET } from '../alert.entity'; export declare class CreateSystemHealthAlertDto extends SystemHealthAlertBaseDto { priority: LOG_PRIORITY; entityTarget: ALERT_ENTITY_TARGET; entityId: string; message: string; topic: string; organization?: OrganizationEntity; }