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