/** SDK-owned platform module. This implementation is maintained in goodvibes-sdk. */ import type { TriggerDefinition } from '../../../tools/workflow/index.js'; import type { ProcessNode } from '../types.js'; /** * TriggerDefinition → ProcessNode. Triggers have no timestamps and no run * state, enabled means armed ('idle'), disabled maps to 'paused' (NOT * 'killed': the definition still exists and TriggerManager.enable() can * re-arm it). resumable mirrors the inverse of pausable. */ export declare function adaptTrigger(def: TriggerDefinition): ProcessNode; //# sourceMappingURL=trigger.d.ts.map