export interface ExtractedPage {
    title: string;
    content: string;
}
/** Fetches a single page and extracts its main readable text. No LLM call. */
export declare function fetchAndExtract(url: string): Promise<ExtractedPage>;
