export interface CountryPrefix { dialing_code: string; iso: string; name: string; phone_number?: string; } export type Country = { name: string; iso2: string; dialCode: string; priority: number; areaCodes?: string[]; flagClass: string; placeHolder?: string; }; export type PhoneNumberCodeType = 'iso' | 'calling'; export type PhoneNumberFormat = 'default' | 'national' | 'international';