import type * as ElevenLabs from "../index"; export interface ConversationUserResponseModel { userId: string; lastContactUnixSecs: number; firstContactUnixSecs: number; conversationCount: number; lastContactAgentId?: string; lastContactConversationId: string; lastContactAgentName?: string; sentiment: ElevenLabs.SentimentAggregate; mostFrustratedConversations?: ElevenLabs.FrustratedConversationRef[]; }