export declare const MCP_WORKFLOW_TOOLS: ({ name: string; description: string; read_safe: boolean; inputSchema: { type: string; properties: { status: { type: string; description: string; }; workflow_name?: undefined; input?: undefined; async?: undefined; timeout?: undefined; }; required?: undefined; }; } | { name: string; description: string; read_safe: boolean; inputSchema: { type: string; properties: { workflow_name: { type: string; description: string; }; status?: undefined; input?: undefined; async?: undefined; timeout?: undefined; }; required: string[]; }; } | { name: string; description: string; read_safe: boolean; inputSchema: { type: string; properties: { workflow_name: { type: string; description: string; }; input: { type: string; description: string; }; async: { type: string; description: string; }; timeout: { type: string; description: string; }; status?: undefined; }; required: string[]; }; })[]; export declare const WORKFLOW_COMPILER_TOOLS: ({ name: string; description: string; read_safe: boolean; inputSchema: { type: string; properties: { workflow_id: { type: string; description: string; }; task_queue: { type: string; description: string; }; workflow_name: { type: string; description: string; }; yaml_name: { type: string; description: string; }; description: { type: string; description: string; }; yaml_workflow_id?: undefined; activate?: undefined; status?: undefined; limit?: undefined; offset?: undefined; }; required: string[]; }; } | { name: string; description: string; read_safe: boolean; inputSchema: { type: string; properties: { yaml_workflow_id: { type: string; description: string; }; activate: { type: string; description: string; }; workflow_id?: undefined; task_queue?: undefined; workflow_name?: undefined; yaml_name?: undefined; description?: undefined; status?: undefined; limit?: undefined; offset?: undefined; }; required: string[]; }; } | { name: string; description: string; read_safe: boolean; inputSchema: { type: string; properties: { status: { type: string; description: string; }; limit: { type: string; description: string; }; offset: { type: string; description: string; }; workflow_id?: undefined; task_queue?: undefined; workflow_name?: undefined; yaml_name?: undefined; description?: undefined; yaml_workflow_id?: undefined; activate?: undefined; }; required?: undefined; }; })[]; export declare const CLAUDE_CODE_TOOLS: ({ name: string; description: string; read_safe: boolean; inputSchema: { type: string; properties: { prompt: { type: string; description: string; default: string; }; working_directory: { type: string; description: string; default: string; }; allowed_tools: { type: string; items: { type: string; }; description: string; default: string[]; }; max_turns: { type: string; description: string; default: number; }; model: { type: string; description: string; default: string; }; system_prompt: { type: string; description: string; }; timeout_ms: { type: string; description: string; default: number; }; credential_label: { type: string; description: string; default: string; }; }; required: string[]; }; } | { name: string; description: string; read_safe: boolean; inputSchema: { type: string; properties: { prompt?: undefined; working_directory?: undefined; allowed_tools?: undefined; max_turns?: undefined; model?: undefined; system_prompt?: undefined; timeout_ms?: undefined; credential_label?: undefined; }; required?: undefined; }; })[];