export interface RecallHit { sessionId: string; score: number; snippet: string; timestamp?: string; } export interface TranscriptDoc { sessionId: string; timestamp?: string; text: string; } export declare class TranscriptIndex { private indexedDocs; constructor(docs: TranscriptDoc[]); query(queryText: string, opts?: { k?: number; minScore?: number; maxSnippetChars?: number; }): RecallHit[]; get size(): number; } //# sourceMappingURL=transcript-index.d.ts.map