export type HMSEventSubscription = { remove(): void; }; export declare class HMSNativeEventEmitter { private _nativeEventEmitter; private _nativeModule; constructor(nativeModule: any); listenerCount(eventType: string): number; addListener(id: string, eventType: string, listener: (...args: any[]) => any): HMSEventSubscription; removeAllListeners(id: string, eventType: string): void; private enableHMSEventType; private disableHMSEventType; }