import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { TopicEvaluationCriteriaAggregate } from "./TopicEvaluationCriteriaAggregate"; import { TopicSentimentAggregate } from "./TopicSentimentAggregate"; export declare const TopicMetricsAggregate: core.serialization.ObjectSchema; export declare namespace TopicMetricsAggregate { interface Raw { conversation_count?: number | null; sentiment?: TopicSentimentAggregate.Raw | null; evaluation_criteria?: TopicEvaluationCriteriaAggregate.Raw[] | null; } }