import type { SearchCandidate } from '../types.js'; import type { VectorStore } from '../storage/libsql-store.js'; export type VectorSearchRequest = { store: VectorStore; queryEmbedding: readonly number[]; limit: number; }; export declare function vectorSearch(request: VectorSearchRequest): Promise;