/** * MCP Tool: get_page_seo * Get comprehensive SEO data and insights for a specific page */ import { z } from 'zod'; import type { SEOContext } from '../types/seo.js'; export declare const GetPageSEOInput: z.ZodObject<{ domain: z.ZodOptional; url_path: z.ZodOptional; file_path: z.ZodOptional; content: z.ZodOptional; }, "strip", z.ZodTypeAny, { domain?: string | undefined; content?: string | undefined; url_path?: string | undefined; file_path?: string | undefined; }, { domain?: string | undefined; content?: string | undefined; url_path?: string | undefined; file_path?: string | undefined; }>; export type GetPageSEOParams = z.infer; /** * Get SEO data for a specific page */ export declare function getPageSEO(params: GetPageSEOParams): Promise; //# sourceMappingURL=get-page-seo.d.ts.map