import { FormatCnpjOptions } from '../format-cnpj/format-cnpj'; /** * Removes CNPJ formatting characters and returns a normalized value. * * @param {string|number} value - The CNPJ value to be parsed. * @param {Object} options - Optional parsing options. * @param {1|2} options.version - The CNPJ version to normalize. * @returns {string} The CNPJ value without formatting. */ export declare const parseCnpj: (value: string | number, options?: Pick) => string;