import type { Tool } from '../../../tools'; import { BrowserToolSessionContext } from './context'; import { BrowserToolExecutor } from './tool-executor'; export declare const tools: Tool[]; export declare function createToolSessionContext(sessionIdProvider: () => string): Promise; export declare function createToolExecutor(): BrowserToolExecutor;