/** * Represents a PSTN (Public Switched Telephone Network) channel with a phone number. */ type PstnChannel = { /** * The phone number associated with the PSTN channel. */ number: number; }; export type { PstnChannel };