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