import type { FetchResult } from '../types.js'; /** * Fetch a page and return its HTML. * Supports auto-detection of JS-rendered sites (falls back to puppeteer-core if installed). */ export declare function fetchPage(url: string, renderer?: 'auto' | 'fetch' | 'puppeteer'): Promise;