import type * as ElevenLabs from "../index"; export interface ConversationInitiationClientDataRequestOutput { conversationConfigOverride?: ElevenLabs.ConversationConfigClientOverrideOutput; customLlmExtraBody?: Record; /** ID of the end user participating in this conversation (for agent owner's user identification) */ userId?: string; sourceInfo?: ElevenLabs.ConversationInitiationSourceInfo; /** ID of the agent branch to use for this conversation */ branchId?: string; /** Environment to use for resolving environment variables */ environment?: string; dynamicVariables?: Record; }