/** * run_flow — Start a flow run. Returns steps for the agent to execute. * * API: POST /v1/flow-runs/start */ import type { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; import type { SitepagerApiClient } from "../api-client.js"; export declare function registerRunFlow(server: McpServer, client: SitepagerApiClient): void;