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