export type HtmlExtractResult = { text: string; title: string | null; method: "readability" | "strip"; }; export declare function extractFromHtml(html: string, _pageUrl: string): HtmlExtractResult; /** True when extracted text looks like a shell/consent page rather than article body. */ export declare function isThinOrConsentPage(text: string): boolean; //# sourceMappingURL=html.d.ts.map