import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js'; /** * Create the Workflow Compiler MCP server. * * Provides tools for converting MCP tool call sequences into * deterministic HotMesh YAML workflows: * - convert_execution_to_yaml — analyze execution and generate YAML * - deploy_yaml_workflow — deploy and optionally activate * - list_yaml_workflows — list stored YAML workflows */ export declare function createWorkflowCompilerServer(options?: { name?: string; }): Promise; export declare function getWorkflowCompilerServer(): McpServer | null; export declare function stopWorkflowCompilerServer(): Promise;