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