import { Sender } from '../sender'; import { Page } from 'puppeteer'; import { DocsSearchDocument, HTag } from '../types'; export default class DocsearchScaper { sender: Sender; constructor(sender: Sender); _amount_of_hierarchies(pageMap: DocsSearchDocument): number; _is_h_tag(tag: string): boolean; _remove_lower_lvl_hierarchies(pageMap: DocsSearchDocument, currentLevel: string): DocsSearchDocument; _empty_radio_lvl_hierarchies(document: DocsSearchDocument): DocsSearchDocument; _fill_lvl_fields(document: DocsSearchDocument, tag: HTag, text: string): DocsSearchDocument; _update_document(document: DocsSearchDocument, tag: HTag, text: string, anchor?: string): DocsSearchDocument; get(url: string, page: Page): Promise; _send_data(data: DocsSearchDocument): Promise; _clean_text(text: string): string; } //# sourceMappingURL=docssearch.d.ts.map