import type * as ElevenLabs from "../index"; /** * Payload for detected entities on a committed transcript. */ export interface CommittedTranscriptEntitiesPayload { /** The message type identifier. */ messageType: "committed_transcript_entities"; /** The committed transcript text the entities were detected in. */ text: string; /** Detected entities. Empty if none were found. */ entities: ElevenLabs.DetectedEntity[]; }