declare type ICertidaoTRF4 = { nome: string; tipo: '01_CIVEL' | '01_CRIMINAL' | '01_CIVEL_CRIMINAL' | '02_CIVEL' | '02_CRIMINAL' | '02_CIVEL_CRIMINAL' | '03_ELEITORAL1' | '03_ELEITORAL2'; }; export declare type ICertidaoTRF4ByCPF = ICertidaoTRF4 & { cpf: string; }; export declare type ICertidaoTRF4ByCNPJ = ICertidaoTRF4 & { cnpj: string; }; declare type ICertidaoTRF1 = { tipo: 'CIVEL' | 'CRIMINAL' | 'ELEITORAL'; orgao: 'AC' | 'AM' | 'AP' | 'BA' | 'DF' | 'GO' | 'MA' | 'MG' | 'MT' | 'PA' | 'PI' | 'RO' | 'RR' | 'TO' | 'TRF1' | '1_GRAU' | '1_2_GRAU'; considera_filiais: 0 | 1; }; declare type ICertidaoTRF1ByCPF = ICertidaoTRF1 & { cpf: string; }; declare type ICertidaoTRF1ByCNPJ = ICertidaoTRF1 & { cnpj: string; }; export declare type ICertidaoTRF1Payload = ICertidaoTRF1ByCPF | ICertidaoTRF1ByCNPJ; export declare type ITSECertidaoPayload = { name: string; birthdate: string; cpf?: string; titulo_eleitoral?: string; mother?: string; father?: string; }; export declare type ITSEDoadoreFornecedoresPayload = { nome?: string; cpf?: string; cnpj?: string; ano: '2002' | '2004' | '2006' | '2008' | '2010' | '2012' | '2014' | '2016' | '2018' | '2020'; }; export {};