import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { ConversationHistoryTranscriptCommonModelOutput } from "./ConversationHistoryTranscriptCommonModelOutput"; import { GetSimulationTestResponseModelDynamicVariablesValue } from "./GetSimulationTestResponseModelDynamicVariablesValue"; import { TestFromConversationMetadataOutput } from "./TestFromConversationMetadataOutput"; export declare const GetSimulationTestResponseModel: core.serialization.ObjectSchema; export declare namespace GetSimulationTestResponseModel { interface Raw { from_conversation_metadata?: TestFromConversationMetadataOutput.Raw | null; dynamic_variables?: Record | null; chat_history?: ConversationHistoryTranscriptCommonModelOutput.Raw[] | null; success_condition?: string | null; simulation_scenario?: string | null; simulation_max_turns?: number | null; id: string; name: string; } }