export declare type CallProtocolInputUnion = CallProtocolInput; /** Specifies the supported call protocols */ export interface CallProtocolInput { _: 'callProtocol'; /** True, if UDP peer-to-peer connections are supported */ udpP2P?: boolean; /** True, if connection through UDP reflectors is supported */ udpReflector?: boolean; /** Minimum supported API layer; use 65 */ minLayer?: number; /** Maximum supported API layer; use 65 */ maxLayer?: number; }