/** * Video status of the user. */ export declare type ZoomVideoSdkVideoStatusType = { /** * Determine whether the video device is available. */ hasVideoDevice: () => Promise; /** * Determine whether the video is turned on. */ isOn: () => Promise; }; export declare class ZoomVideoSdkVideoStatus implements ZoomVideoSdkVideoStatusType { userId: string; constructor(userId: string); isOn(): Promise; hasVideoDevice(): Promise; }