import { tiposParte } from "../utils";
export default class ScrappedParte {
    nome: string;
    tipoDeParte: tiposParte;
    dontHaveCpfCnpj?: boolean;
    noCpfCnpjReason?: string;
    cpf?: string;
    cnpj?: string;
    judSystemId?: string;
    endereco?: string;
    email?: string;
    telefone?: string;
    oab?: string;
    advogados?: ScrappedParte[];
    errorMsgs?: string[];
    constructor(nome: string, tipoDeParte: tiposParte, dontHaveCpfCnpj?: boolean, noCpfCnpjReason?: string, cpf?: string, cnpj?: string, judSystemId?: string, endereco?: string, email?: string, telefone?: string, oab?: string, advogados?: ScrappedParte[], errorMsgs?: string[]);
}
