/** * 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 520840e8-9b12-50c0-b652-73fccb914966 */ export declare class WhoIsResponse extends AbstractMessage { type: Type; body: Instance; }