/** * Elrest eDesign Runtime IPC Typescript Message Export Request * * @copyright 2024 Elrest Automations Systeme GMBH */ import { AbstractMessage } from '../AbstractMessage'; import { Type } from '../Type'; export declare class ImportRequest extends AbstractMessage { type: Type; body: string; }