/** * Process Layer - Public API * * Barrel export for the Process Layer (Layer 1) of the execution system. * Exports all public types, interfaces, and implementations. * * @module execution/process */ export type { ProcessStatus, ProcessConfig, ManagedProcess, OutputHandler, ErrorHandler, ProcessMetrics, } from './types.js'; export type { IProcessManager } from './manager.js'; export { SimpleProcessManager } from './simple-manager.js'; export { generateId, formatDuration, isValidSignal, formatProcessError, } from './utils.js'; //# sourceMappingURL=index.d.ts.map