/** * Send Message Tool - Send a new message to an existing task session. * Ported from mcp-supersubagents, adapted for OpenCode. */ import type { ToolContext } from '../types.js'; export declare const sendMessageTool: { name: string; description: string; inputSchema: { type: "object"; properties: { task_id: { type: string; description: string; }; message: { type: string; description: string; }; timeout: { type: string; description: string; }; cwd: { type: string; description: string; }; }; required: string[]; }; }; export declare function handleSendMessage(args: unknown, ctx?: ToolContext): Promise<{ content: Array<{ type: string; text: string; }>; isError?: true; }>; //# sourceMappingURL=send-message.d.ts.map