import { IO_SPACE_EVENTS, IO_MEETING_EVENTS, IO_ROLE } from "./types"; declare let isInitializeSocketIo: boolean; declare function initSocketIo(meetingId: string, role: IO_ROLE): void; declare function socketEmit(payload: { socketEvent: IO_SPACE_EVENTS | IO_MEETING_EVENTS; data: any; }): void; declare function getRole(): IO_ROLE; declare function getMeetingId(): string; export { isInitializeSocketIo, initSocketIo, socketEmit, getRole, getMeetingId, };