import { HMSUpdateListener } from '../../interfaces';
export declare class BroadcastManager {
    listener?: HMSUpdateListener | undefined;
    private readonly TAG;
    constructor(listener?: HMSUpdateListener | undefined);
    handleNotification(method: string, notification: any): void;
    private handleBroadcast;
}
