import { QueryEmbeddingCache } from '../types/types'; /** * Gets a query embedding from cache, or computes and caches it. * Ensures each unique query string is only embedded once per request. */ export declare const getOrComputeQueryEmbedding: (query: string, cache: QueryEmbeddingCache) => Promise;