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