import type { AgentEngine } from "../../agent/engine/types.js"; import type { ActionEntry } from "../../agent/production-agent.js"; export declare function createBuilderBrowserTool(deps: { getOrigin: () => string; getOwner?: () => string | null | undefined; extensionTools?: boolean; }): Record; /** * Creates the unified `agent-teams` tool that consolidates all sub-agent * orchestration behind a single tool with an `action` parameter. */ export declare function createTeamTools(deps: { getOwner: () => string; getSystemPrompt: () => string; getActions: () => Record; getEngine: () => AgentEngine; getModel: () => string; getParentThreadId: () => string; getSend: () => ((event: import("../../agent/types.js").AgentChatEvent) => void) | null; }): Record; //# sourceMappingURL=browser-team-tools.d.ts.map