import { LiveStudioParticipRole } from '@jealous-robot-dev/drophr-common'; export declare enum MeetingAPIResponses { FAILED = "FAILED", SUCCESS = "SUCCESS", TOO_EARLY = "TOO_EARLY", FORBIDDEN = "FORBIDDEN" } export interface HostJoinData { start_url: string; } export interface CustomerJoinData { join_url: string; } export interface HostJoinResponse { res: MeetingAPIResponses; data: HostJoinData; } export interface CustomerJoinResponse { res: MeetingAPIResponses; data: HostJoinData; } export interface SessionJoinPayload { id: string; sid: string; duration: number; capacity: number; starts_at: number; can_join?: boolean; role: LiveStudioParticipRole; }