import type { AgentConfig } from "@opencode-ai/sdk"; import { type AvailableAgent, type AvailableCategory, type AvailableSkill } from "./dynamic-agent-prompt-builder"; import { type AgentPromptMetadata } from "./types"; export declare const ORCHESTRATOR_PROMPT_METADATA: AgentPromptMetadata; export declare function createOrchestratorAgent(model: string, availableAgents?: AvailableAgent[], availableToolNames?: string[], availableSkills?: AvailableSkill[], availableCategories?: AvailableCategory[], useTaskSystem?: boolean): AgentConfig; export declare namespace createOrchestratorAgent { var mode: "all"; }