import { CallStatus, CallRole, CallMediaType } from '../../TUICallService'; export type TCallInfoContextValue = { callStatus?: CallStatus, callRole?: CallRole, callType?: CallMediaType, isGroupCall?: boolean, isEarPhone?: boolean, focusElement?: string | null, }; export const CallInfoContextKey = 'CallInfoContextKey';