export interface BrowserToolResult { result?: unknown; error?: string; success: boolean; } export interface IBrowserToolCallerParams { sessionId: string; toolCallId: string; toolName: string; args: Record; timeout?: number; } export declare function callBrowserTool({ sessionId, toolCallId, toolName, args, timeout, }: IBrowserToolCallerParams): Promise; //# sourceMappingURL=browser-tool-caller.d.ts.map