/**
* Elrest eDesign Runtime Library Messages Model Worker Module
*
* @copyright 2024 Elrest AutomationsSysteme GMBH
*/
///
///
import { SpawnOptions } from 'child_process';
import { WorkerOptions } from 'worker_threads';
import { ExecutionMode } from './ExecutionMode';
export declare class ExecutionOptions {
mode: ExecutionMode;
script: string;
options: SpawnOptions | WorkerOptions | undefined;
}