import { Tool } from '@tarko/mcp-agent'; import { AbstractBrowserControlStrategy } from './base-strategy'; /** * BrowserHybridStrategy - Implements the 'hybrid' browser control mode * * This strategy provides a hybrid approach that combines both GUI Agent (vision-based) * and MCP Browser (DOM-based) tools without handling conflicts between them. */ export declare class BrowserHybridStrategy extends AbstractBrowserControlStrategy { /** * Register both GUI Agent tools and complementary MCP Browser tools */ registerTools(registerToolFn: (tool: Tool) => void): Promise; } //# sourceMappingURL=browser-hybrid-strategy.d.ts.map