/** * Enum for HMSPeerType. * * Defines the types of peers within the HMS (100ms) system. This enumeration is used to distinguish between different * kinds of peers, such as SIP (Session Initiation Protocol) peers and regular peers. Each peer type has specific * characteristics and roles within the video conferencing or communication context. * * @enum {string} * * @see https://www.100ms.live/docs/server-side/v2/how-to-guides/Session%20Initiation%20Protocol%20(SIP)/SIP-Interconnect */ export declare enum HMSPeerType { SIP = "SIP", REGULAR = "REGULAR" } export declare const HMSPeerTypeOrdinals: Map;