/** * Elrest eDesign Runtime IPC Typescript Messages Runtime Monitor Subscribe * Response * * @copyright 2024 Elrest Automations Systeme GMBH */ import { AbstractMessage } from './../AbstractMessage'; import { Type } from './../Type'; import * as Model from '../../Model'; export declare class MonitorSubscribeResponse extends AbstractMessage { type: Type; body: Model.Runtime.Report.Report; }