import { Tool } from '@modelcontextprotocol/sdk/types.js'; import { WebScrapingService } from '../services/WebScrapingService.js'; type Input = { url: string; mainContentOnly?: boolean; includeTags?: string[]; excludeTags?: string[]; scrapingBackend?: 'playwright' | 'firecrawl'; }; export declare class ScrapePageTool { private webScrapingService?; constructor(webScrapingService?: WebScrapingService); getToolDefinition(): Tool; execute(input: Input): Promise<{ success: boolean; message: string; markdown?: string; contentLength?: number; }>; } export {}; //# sourceMappingURL=ScrapePageTool.d.ts.map