import { JSDOM } from 'jsdom';
import { Article } from '../types.js';
export declare function extractArticle(dom: JSDOM): Article | null;
export declare function hasContent(html: string): boolean;
