/** * Browser mapper — maps browser tool calls to BROWSER_ACTION events. * Captures action type, URL visited, and screenshot flag without raw content. */ import type { EventMapper, MappedEvent } from "./MapperRegistry.js"; export declare class BrowserMapper implements EventMapper { toolNames: string[]; mapStart(_toolName: string, params: Record): MappedEvent; mapEnd(_toolName: string, params: Record, result: Record | null, _error?: Error): MappedEvent; } //# sourceMappingURL=browser.d.ts.map