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