export declare type VideoSdkMeeting = { meetingId: string; name: string; participantId: string; micEnabled: boolean; webcamEnabled: boolean; maxResolution: "sd" | "hd" | string; multiStream: boolean; mode: "CONFERENCE" | "VIEWER" | string; }; export declare type VideoSdkConfig = { config: VideoSdkMeeting; token: string; joinWithoutUserInteraction: boolean; };