export declare class CNPJValidator { /** * Valida se o CNPJ é valido. Deve-se ser informado o cnpj sem máscara. */ checkCNPJ(value: any): boolean; checkCNPJAlphanumeric(value: any): boolean; private validateCnpjDigit; private convertToAsciiMinus48; } export declare const cnpjValidator: CNPJValidator;