export default function useRoomInfo(): {
    t: any;
    arrowDirection: import('vue').Ref<boolean, boolean>;
    isWeChat: boolean;
    isShowRoomInfo: import('vue').Ref<boolean, boolean>;
    isShowRoomInfoTitle: import('vue').ComputedRef<string>;
    conferenceTitle: import('vue').ComputedRef<string>;
    roomInfoTabList: import('vue').ComputedRef<({
        id: number;
        title: string;
        content: any;
        copyLink: string;
        isShowCopyIcon: boolean;
        visible: boolean;
    } | {
        id: number;
        title: string;
        content: string;
        copyLink: string;
        isShowCopyIcon: boolean;
        visible: string;
    })[]>;
    handleCloseRoomInfo: () => void;
    toggleShowRoomInfoStatus: () => void;
    handleClickOutsideRoomInfoContainer: () => void;
    onCopy: (value: string | number) => Promise<void>;
};
