/** * Check Page Ready Tool * Verify that page has finished loading and is interactive */ import { Tool, ToolParameter, ToolExecutionContext } from '../tool-registry'; import { ToolResult } from '../types'; export declare class CheckPageReadyTool implements Tool { name: string; description: string; parameters: ToolParameter[]; execute(params: Record, context: ToolExecutionContext): Promise; } //# sourceMappingURL=check-page-ready.d.ts.map