/** * Removes CEP formatting characters and returns only digits. * * @param {string|number} value - The CEP value to be parsed. * @returns {string} The CEP value without formatting. */ export declare const parseCep: (value: string | number) => string;