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