export interface IVoiceChatManager {
    getMuted(): boolean;
    setMuted(value: boolean): void;
}
