/** * Represents a VBC (Voice Business Communication) channel with an extension. */ type VbcChannel = { /** * The extension associated with the VBC channel. */ extension: string; }; export type { VbcChannel };