/** * Inspect Page Tool * Get current DOM snapshot (might be redundant since DOM is always-provided, but keeps extensibility) */ import { Tool, ToolParameter, ToolExecutionContext } from '../tool-registry'; import { ToolResult } from '../types'; export declare class InspectPageTool implements Tool { name: string; description: string; parameters: ToolParameter[]; execute(params: Record, context: ToolExecutionContext): Promise; } //# sourceMappingURL=inspect-page.d.ts.map