/** * Represents a WhatsApp channel with a phone number. */ type WhatsappChannel = { /** * The phone number associated with the WhatsApp channel. */ number: string; }; export type { WhatsappChannel };