import type * as ElevenLabs from "../index"; export interface AgentTopicResponseModel { topicId: string; label: string; description: string; conversationCount: number; parentTopicId?: string; x2D?: number; y2D?: number; metrics?: ElevenLabs.TopicMetricsAggregate; /** Success rate across the topic's evaluation criteria, weighted by scored conversations. Returned regardless of include_evaluation_criteria. */ successRate?: number; }