/** * Represents a Messenger channel with an ID. */ type MessengerChannel = { /** * The unique ID associated with the Messenger channel. */ id: string; }; export type { MessengerChannel };