declare class HtmlScrapper {
private rawHtml;
private cheerioInstance;
private selected;
constructor(rawHtml: string);
static init(rawHtml: string): HtmlScrapper;
select(selector: string): HtmlScrapper;
innerText(): string;
}
export { HtmlScrapper };