import type * as ElevenLabs from "../index"; /** * A specification that will be used to simulate a conversation between an agent and an AI user. */ export interface ConversationSimulationSpecification { simulatedUserConfig: ElevenLabs.AgentConfig; toolMockConfig?: Record; /** A partial conversation history to start the simulation from. If empty, simulation starts fresh. */ partialConversationHistory?: ElevenLabs.ConversationHistoryTranscriptCommonModelInput[]; dynamicVariables?: Record; }