import type { Tool } from '../core/tools/tool-types.js'; import { type WebBrowserAgentConfig } from './browser-agent.js'; export interface WebBrowserAgentInput { goal: string; startUrl: string; steps?: Array<{ description: string; action: { type: string; url?: string; selector?: string; value?: string; key?: string; direction?: string; amount?: number; ms?: number; mode?: string; script?: string; path?: string; fullPage?: boolean; waitUntil?: string; timeoutMs?: number; }; }>; timeoutMs?: number; } export declare function createWebBrowserAgentTool(config?: WebBrowserAgentConfig): Tool; export declare const webBrowserAgentTool: Tool; //# sourceMappingURL=browser-agent-tool.d.ts.map