import type * as ElevenLabs from "../../api/index";
import * as core from "../../core";
import type * as serializers from "../index";
export declare const MessagesSearchResult: core.serialization.ObjectSchema<serializers.MessagesSearchResult.Raw, ElevenLabs.MessagesSearchResult>;
export declare namespace MessagesSearchResult {
    interface Raw {
        conversation_id: string;
        agent_id: string;
        agent_name?: string | null;
        transcript_index: number;
        chunk_text: string;
        score: number;
        conversation_start_time_unix_secs: number;
    }
}
