/** * Answer Question Tool - Submit answers to pending questions. * Ported from mcp-supersubagents, adapted for OpenCode. */ export declare const answerQuestionTool: { name: string; description: string; inputSchema: { type: "object"; properties: { task_id: { type: string; description: string; }; answer: { type: string; description: string; }; }; required: string[]; }; }; export declare function handleAnswerQuestion(args: unknown): Promise<{ content: Array<{ type: string; text: string; }>; isError?: true; }>; //# sourceMappingURL=answer-question.d.ts.map