/** * Workflow domain — inspect + lifecycle. * * Two tools, workflow-shaped: * * - `workflow_inspect` (read) discriminates on `verb` so a single * entry point covers state inspection, available-command lookup, * workflow-definition enumeration, per-site rollup (XM Apps REST), * and workflow-state search ("assigned to me" queries). * * - `workflow_lifecycle` (write) currently exposes a single `verb` * (`advance`) but is shaped as a discriminated input so future * mutations (reset to initial, bulk-advance) slot in without * forcing a tool-name change. * * Each handler delegates to the `runWorkflow*` task function shared * with the CLI; the MCP layer adds only the discriminator routing * and the structured-content envelope. */ import type { McpRegistry } from "../registry.js"; export declare const registerWorkflowTools: (registry: McpRegistry) => void;