import type * as HydraDB from "../../api/index.js"; import * as core from "../../core/index.js"; import type * as serializers from "../index.js"; import { SearchVectorStoreChunk } from "./SearchVectorStoreChunk.js"; export declare const SearchChunkInspectResult: core.serialization.ObjectSchema; export declare namespace SearchChunkInspectResult { interface Raw { chunks?: SearchVectorStoreChunk.Raw[] | null; is_truncated?: boolean | null; message?: string | null; missing_chunk_ids?: string[] | null; success?: boolean | null; } }