import { type PluginInput, type ToolDefinition } from '@opencode-ai/plugin'; import type { CouncilManager } from '../council/council-manager'; /** * Creates the council_session tool for multi-LLM orchestration. * * This tool triggers a full council session: parallel councillors → * formatted results returned to the council agent for synthesis. * Available to the council agent. */ export declare function createCouncilTool(_ctx: PluginInput, councilManager: CouncilManager): Record;