import type { AudioType } from './ZoomVideoSdk'; /** * Audio status of the user. */ export declare type ZoomVideoSdkAudioStatusType = { /** * Determine whether the audio is muted. */ isMuted: () => Promise; /** * Determine whether the user is talking. */ isTalking: () => Promise; /** * Get the audio type of user. */ getAudioType: () => Promise; }; export declare class ZoomVideoSdkAudioStatus implements ZoomVideoSdkAudioStatusType { userId: string; constructor(userId: string); isMuted(): Promise; isTalking(): Promise; getAudioType(): Promise; }