export interface DetectedEntity { /** The text that was identified as an entity. */ text: string; /** The type of entity detected (e.g., 'credit_card', 'email_address', 'person_name'). */ entityType: string; /** Start character position in the transcript text. */ startChar: number; /** End character position in the transcript text. */ endChar: number; }