import { MeetingConfig, IMpParticipant } from './types'; declare let isMeetingInitialized: boolean; declare function generateMeetingURL(meeting_id?: string): Promise<{ host_meeting_url: string; guest_meeting_url: string; meeting_id: string; meeting_password: any; }>; declare function createMeeting(spaceId?: string, hostName?: string, title?: string, meetingStart?: any, duration?: number, password?: string): Promise<{ host: string; guest: string; meeting_id: string; }>; declare function getMeeting(meetingId: string): Promise>; declare function getSpaceMeetings(spaceId: number): Promise>; declare function startMeeting(meetingUrl: string, meetingPassword?: string, meetingConfig?: MeetingConfig): Promise; declare function getMeetingParticipants(): IMpParticipant[]; declare function stopMeeting(): Promise; declare function isMeetingExists(meetingId: string): Promise; declare function isMeetingActive(meetingId: string): Promise; declare function updateMeetingTitle(meetingId: any, meetingTitle: any): Promise>; declare function updateMeetingStart(meetingId: any, meetingStart: any): Promise>; declare function updateMeetingSpace(meetingId: any, spaceId: any): Promise>; declare function updateMeetingStatus(meetingId: any, meetingStatus: any): Promise>; export { isMeetingInitialized, getMeetingParticipants, createMeeting, startMeeting, stopMeeting, generateMeetingURL, updateMeetingTitle, updateMeetingStart, updateMeetingStatus, updateMeetingSpace, getMeeting, getSpaceMeetings, isMeetingExists, isMeetingActive, };