import type { LiveTranscriptionOperationType } from "react-native-zoom-video-sdk"; export declare type ZoomVideoSdkLiveTranscriptionMessageInfoType = { /** * ID of the transcription message. */ messageID: string; /** * Content of the transcription message. */ messageContent: string; /** * Type of transcription message. */ messageType: LiveTranscriptionOperationType; /** * Speaker name of the transcription message. */ speakerName: string; /** * Speaker ID of the transcription message. */ speakerID: string; /** * Time stamp of the transcription message. */ timeStamp: string; }; export declare class ZoomVideoSdkLiveTranscriptionMessageInfo implements ZoomVideoSdkLiveTranscriptionMessageInfoType { messageID: string; messageContent: string; messageType: LiveTranscriptionOperationType; speakerName: string; speakerID: string; timeStamp: string; constructor(messageInfo: ZoomVideoSdkLiveTranscriptionMessageInfoType); }