//#region src/parse-processo-juridico/parse-processo-juridico.d.ts /** * 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. * * @example * ```typescript * parseProcessoJuridico("0002080-34.2026.5.15.0049"); // "00020803420265150049" * ``` * * Resolução CNJ nº 65/2008 defines this Número Único de Processo layout and its check digits. * * @see Official: https://atos.cnj.jus.br/atos/detalhar/119 */ export declare const parseProcessoJuridico: (value: string | number) => string; //#endregion