export declare type CNPJOpts = { cnpj: string; origem?: 'mobile' | 'web'; }; declare type PGFN = { preferencia_emissao?: 'nova' | '2via'; }; declare type PGFNByCPF = PGFN & { cpf: string; }; declare type PGFNByCNPJ = PGFN & { cnpj: string; }; export declare type PGFNPayload = PGFNByCPF | PGFNByCNPJ; export {};