import type { ScrapperOutput } from '../types/scrapperOutput';
export declare class Article {
    readonly url: string;
    constructor(url: string);
    extract(html?: string): Promise<ScrapperOutput>;
}
