/** * Removes phone formatting characters, returns only digits, and caps the result to 11 digits. * * @param {string|number} value - The phone value to be parsed. * @returns {string} The phone value without formatting. */ export declare const parsePhone: (value: string | number) => string;