import { ApplicationEntity, GroupEntity, FormEntity, LOG_PRIORITY, DeviceEntity, UserEntity, OrganizationEntity } from '../..'; import { ALERT_ENTITY_TARGET, ALERT_STATUS } from '../alert.entity'; export declare class SystemHealthAlertBaseDto { priority?: LOG_PRIORITY; status?: ALERT_STATUS; entityTarget?: ALERT_ENTITY_TARGET; entityId?: string; message?: string; topic?: string; user?: UserEntity; device?: DeviceEntity; application?: ApplicationEntity; form?: FormEntity; organization?: OrganizationEntity; groups?: GroupEntity[]; }