/** * MCP Tool: crawl_site * Trigger a fresh site crawl and analysis */ import { z } from 'zod'; export declare const CrawlSiteInput: z.ZodObject<{ domain: z.ZodOptional; }, "strip", z.ZodTypeAny, { domain?: string | undefined; }, { domain?: string | undefined; }>; export type CrawlSiteParams = z.infer; export interface CrawlSiteResult { success: boolean; message: string; summary: { total_urls: number; urls_checked: number; issues_found: number; crawl_duration_ms: number; crawl_method: 'sitemap' | 'navigation' | 'failed'; }; } /** * Trigger site crawl */ export declare function crawlSite(params: CrawlSiteParams): Promise; //# sourceMappingURL=crawl-site.d.ts.map