import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { ContentFormat } from "./ContentFormat"; import { KnowledgeBaseDocumentType } from "./KnowledgeBaseDocumentType"; export declare const AgentKnowledgeBaseRagChunkResponseModel: core.serialization.ObjectSchema; export declare namespace AgentKnowledgeBaseRagChunkResponseModel { interface Raw { document_id: string; document_name: string; chunk_id: string; text: string; vector_distance?: number | null; content_format: ContentFormat.Raw; document_type: KnowledgeBaseDocumentType.Raw; } }