/** * Multiple formatting representations of the same phone number for different use cases. * Provides flexibility for display, storage, and integration requirements. */ export interface NumberFormat { /** Phone number in E.164 format with country code prefix. */ international: string; /** * Phone number formatted according to national conventions.
* * Includes parentheses, spaces, and dashes as commonly used in the country. */ national: string; /** Phone number with only digits, no formatting or country code prefix. */ raw: string; }