import type { Client } from "@libsql/client"; export interface UpsertKeyphrasesCacheResult { vaultPath: string; ran: boolean; figmentsProcessed: number; keyphraseRowsUpserted: number; durationMs: number; } export interface UpsertKeyphrasesCacheOpts { lytDb?: Client; topK?: number; } export declare function upsertKeyphrasesCache(vaultPath: string, opts?: UpsertKeyphrasesCacheOpts): Promise; export declare function deriveTitle(raw: string, relPath: string): string; //# sourceMappingURL=upsert-keyphrases-cache.d.ts.map