import type * as Agora from "../index.js"; /** * Adaptive Recognition Engine for Speech ASR configuration. */ export interface AresAsr { language?: Agora.AsrLanguage; /** A list of hotwords to improve ASR accuracy. */ keywords?: string[]; params?: Agora.AresAsrParams; /** Accepts any additional properties */ [key: string]: any; }