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