/** SDK-owned platform module. This implementation is maintained in goodvibes-sdk. */ import type { WorkflowInstance } from '../../../tools/workflow/index.js'; import type { ProcessNode } from '../types.js'; /** * WorkflowInstance → ProcessNode. Workflow FSMs are a SILENT source (no bus * emission); their liveness rides the registry's coalesced tick, and the * manager self-evicts completed entries (1 h TTL / 50 cap) so terminal nodes * eventually disappear from the snapshot. */ export declare function adaptWorkflow(instance: WorkflowInstance, now: number): ProcessNode; //# sourceMappingURL=workflow.d.ts.map