import { ScanOptions, ScanResult } from "./types.js"; //#region src/scan/scanWebsite.d.ts /** * Scan a single web page for i18n/SEO health and bundle weight. * * In `deep` mode (default) the page is rendered with a locally installed * `puppeteer`; when `puppeteer` is missing the scan transparently falls back to * a `basic` fetch-based pass and logs a recommendation to install it. * * @param targetUrl - The absolute URL to scan. * @param options - {@link ScanOptions} controlling depth, timeout and UA. * @returns The {@link ScanResult} including score, page size and per-check events. */ export declare const scanWebsite: (targetUrl: string, options?: ScanOptions) => Promise; //#endregion //# sourceMappingURL=scanWebsite.d.ts.map