import { ChatEntitlement, IChatEntitlementService } from '../../../../services/chat/common/chatEntitlementService.js';
export function isNewUser(chatEntitlementService: IChatEntitlementService): boolean {
return !chatEntitlementService.sentiment.installed ||
chatEntitlementService.entitlement === ChatEntitlement.Available;
}