import ScrappedParte from "../data-structures/ScrappedParte";
export type PartesReturn = {
    poloAtivo: ScrappedParte[] | null;
    poloPassivo: ScrappedParte[] | null;
    outros: ScrappedParte[] | null;
};
export default class PartesScrapper {
    protected macroContainer: Document | HTMLElement;
    constructor(macroContainer: Document | HTMLElement);
    fetchParticipantesInfo(): PartesReturn | undefined;
    protected loadPageCheckpoints(): void;
    protected getPartes(): PartesReturn | undefined;
}
