/**
 * Validates a CPF (Cadastro de Pessoas Físicas) number.
 *
 * @param {string} cpf - The CPF number to be validated.
 * @return {boolean} - True if the CPF number is valid, false otherwise.
 */
export declare function validateCPF(cpf: string): boolean;
/**
 * Validates a CNPJ (Cadastro Nacional de Pessoa Jurídica) number.
 *
 * @param {string} cnpj - The CNPJ number to be validated.
 * @return {boolean} - True if the CNPJ is valid, false otherwise.
 */
export declare function validateCNPJ(cnpj: string): boolean;
