declare const validateCPF: (cpf: string) => boolean;
declare const validateCNPJ: (cnpj: string) => boolean;
declare const validatePhoneBR: (phone: string, requireCountryCode?: boolean) => boolean;

export { validateCNPJ, validateCPF, validatePhoneBR };
