/** * Represents an MMS (Multimedia Messaging Service) channel with a phone number. */ type MmsChannel = { /** * The phone number associated with the MMS channel. */ number: string; }; export type { MmsChannel };