/** * Represents the communication capabilities available for a phone number. */ export interface PhoneCapabilities { /** Whether the phone number supports MMS (multimedia messaging). */ mms: boolean; /** Whether the phone number supports SMS messaging. */ sms: boolean; /** Whether the phone number supports voice calls. */ voice: boolean; }