import type { ToolPlugin } from '../registry.js'; import type { LLMProvider } from '../../../core/types.js'; export interface AgentSpawningOptions { provider: LLMProvider; workingDir?: string; providerId?: string; modelId?: string; } export declare function createAgentSpawningToolPlugin(options: AgentSpawningOptions): ToolPlugin; //# sourceMappingURL=agentSpawningPlugin.d.ts.map