import { UA, WebSocketInterface } from '@krivega/jssip'; export type TJsSIP = { UA: typeof UA; WebSocketInterface: typeof WebSocketInterface; }; export type TRtpSendParameters = Partial>; export type TResolutionSize = { width: number; height: number; }; export type TSimulcastEncoding = TResolutionSize & { rid?: string; scalabilityMode?: string; }; export declare enum EMimeTypesVideoCodecs { VP8 = "video/VP8", VP9 = "video/VP9", H264 = "video/H264", AV1 = "video/AV1", rtx = "video/rtx", red = "video/red", flexfec03 = "video/flexfec-03" }