import type * as ElevenLabs from "../index"; export interface AgentConfigOverrideOutput { /** If non-empty, the first message the agent will say. If empty, the agent waits for the user to start the discussion. */ firstMessage?: string; /** Language of the agent - used for ASR and TTS */ language?: string; /** The prompt for the agent */ prompt?: ElevenLabs.PromptAgentApiModelOverride; }