import ScrappedAndamento from "../data-structures/ScrappedAndamento";
export default class AndamentosScrapper {
    protected doc: Document;
    constructor(doc: Document);
    fetchAndamentosInfo(): Promise<ScrappedAndamento[] | undefined>;
    protected loadPageCheckpoints(): void;
    protected getAndamentos(): Promise<ScrappedAndamento[] | undefined>;
}
