import ScrappedAndamento from "../data-structures/ScrappedAndamento"; import AndamentosScrapper from "./AndamentosScrapper"; declare class ProjudiTjbaAndamentosScrapper extends AndamentosScrapper { protected doc: Document; protected HTML_BODY_REGEX: RegExp; protected divAndamentosTbody: HTMLElement; constructor(doc: Document); fetchAndamentosInfo(): Promise; protected loadPageCheckpoints(): void; protected getAndamentos(): Promise; protected brStringToDate(str: string): Date; protected isCancelado(andamentoTd: HTMLElement): boolean; protected getDocumentTextContentIfExists(tr: HTMLElement): Promise; protected getDocumentTextContent(uri: string): Promise; protected getBodyInnerHtmlFromHtmlString(htmlStr: string): string; protected documentIsNotRelevant(textContent: string): boolean; } export default ProjudiTjbaAndamentosScrapper;