/** * Represents an SMS (Short Message Service) channel with a phone number. */ type SmsChannel = { /** * The phone number associated with the SMS channel. */ number: string; }; export type { SmsChannel };