import { Subject } from 'rxjs'; /** * Call event subjects for handling various call-related actions (like outgoing calls, call acceptance, rejections, etc.) */ export declare class CometChatCallEvents { static ccOutgoingCall: Subject; static ccCallAccepted: Subject; static ccCallRejected: Subject; static ccCallEnded: Subject; }