export interface ExtractedMarkdown { markdown: string; method: 'readability' | 'full-page'; title: string | null; wordCount: number; } /** Best-effort HTML→Markdown for one crawled page. Never throws. */ export declare function extractMarkdown(html: string, url: string): ExtractedMarkdown | null;