/** * Cancel Task Tool - Cancel running tasks or clear all tasks. * Ported from mcp-supersubagents. */ export declare const cancelTaskTool: { name: string; description: string; inputSchema: { type: "object"; properties: { task_id: { oneOf: ({ type: string; description: string; items?: undefined; } | { type: string; items: { type: string; }; description: string; })[]; description: string; }; clear: { type: string; description: string; }; confirm: { type: string; description: string; }; }; required: string[]; }; }; export declare function handleCancelTask(args: unknown): Promise<{ content: Array<{ type: string; text: string; }>; isError?: true; }>; //# sourceMappingURL=cancel-task.d.ts.map