export interface SeoConfig { /** Default request timeout in milliseconds. */ timeout: number; /** Default User-Agent string for HTTP requests. */ userAgent: string; /** User-Agent used when impersonating Googlebot. */ googlebotUserAgent: string; /** Whether to follow HTTP redirects by default. */ followRedirects: boolean; /** Maximum number of redirects to follow. */ maxRedirects: number; /** Directory for SEO report output. */ outputDir: string; /** Path to the drift-monitoring SQLite database. */ dbPath: string; /** Default viewport for rendering. */ defaultViewport: "desktop" | "mobile"; /** Block resource types during rendering to speed up fetches. */ blockRenderResources: string[]; /** Whether SSRF protection is enabled (blocks private/internal IPs). */ ssrfProtection: boolean; maxResponseBytes: number; stopWords: string[]; } export declare function loadSeoConfig(): SeoConfig; //# sourceMappingURL=config.d.ts.map