import type * as HydraDB from "../index.js"; export interface SearchGraphPath { chunkIds?: string[]; /** Merged text from all chunk passages in this relation path. */ combinedContext?: string; /** Relevance score for this item against the query. */ relevancyScore?: number; /** Knowledge-graph triplets that make up this relation path. */ triplets?: HydraDB.SearchPathTriplet[]; }