/** Wire version shared by the CLI discovery file, HTTP API, state, and SSE. */ export declare const STANDALONE_PROTOCOL_VERSION: 1; /** Stable control-plane endpoints exposed by StandaloneWorkflowServer. */ export declare const STANDALONE_API_PATHS: Readonly<{ health: "/api/health"; overview: "/api/overview"; state: "/api/state"; events: "/api/events"; runs: "/api/runs"; run: "/api/runs/:runId"; pause: "/api/runs/:runId/pause"; resume: "/api/runs/:runId/resume"; stop: "/api/runs/:runId/stop"; checkpointResponse: "/api/checkpoints/:checkpointId/respond"; }>;