import type * as HydraDB from "../../api/index.js"; import * as core from "../../core/index.js"; import type * as serializers from "../index.js"; import { SearchPathTriplet } from "./SearchPathTriplet.js"; export declare const SearchGraphPath: core.serialization.ObjectSchema; export declare namespace SearchGraphPath { interface Raw { chunk_ids?: string[] | null; combined_context?: string | null; relevancy_score?: number | null; triplets?: SearchPathTriplet.Raw[] | null; } }