/** * MCP Status Tools * * Tools for getting pipeline status and progress. */ import type { ToolDefinition } from './index.js'; /** * Register status tools */ export declare function registerStatusTools(): ToolDefinition[]; /** * Handle status tool calls */ export declare function handleStatusTool(name: string, args: Record): Promise<{ content: Array<{ type: 'text'; text: string; }>; }>; //# sourceMappingURL=status.d.ts.map