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