import type * as ElevenLabs from "../../api/index";
import * as core from "../../core";
import type * as serializers from "../index";
import { ConversationHistoryTranscriptCommonModelInput } from "./ConversationHistoryTranscriptCommonModelInput";
export declare const TestFromConversationMetadataInput: core.serialization.ObjectSchema<serializers.TestFromConversationMetadataInput.Raw, ElevenLabs.TestFromConversationMetadataInput>;
export declare namespace TestFromConversationMetadataInput {
    interface Raw {
        conversation_id: string;
        agent_id: string;
        branch_id?: string | null;
        workflow_node_id?: string | null;
        original_agent_reply?: ConversationHistoryTranscriptCommonModelInput.Raw[] | null;
    }
}
