import type { TestResult, SeoConfig, PageConfig } from '../types.js'; /** * Fast Mode engine: runs all enabled rules using cheerio static HTML analysis. * No browser required — suitable for server-rendered HTML. */ export declare function runFastMode(html: string, url: string, config: SeoConfig, pageConfig?: PageConfig, responseHeaders?: Record): Promise; /** * Fetch HTML from a URL and run Fast Mode analysis. */ export declare function fetchAndAnalyze(url: string, config: SeoConfig): Promise; //# sourceMappingURL=fast-mode.d.ts.map