/** * Elrest eDesign Runtime IPC Typescript Messages Instance * * @copyright 2024 Elrest Automations Systeme GMBH */ import { AbstractMessage } from '../AbstractMessage'; import { Type } from '../Type'; import { Instance } from '../../Model/Instance'; /** @codex-xmi-id d4547c8f-66f3-50cd-a547-94b27b6f1135 */ export declare class StopResponse extends AbstractMessage { type: Type; body: Instance; }