/** * Enable the search / retrieval capability. * Pass to `createNoydb({ searchStrategy: withSearch() })` to make a collection's * `search` / `retrieve` / `similarTo` / `warmIndex` / `flushIndex` methods live, * and to enable the put()-time embedding-vector compute for collections that * declare an `embeddings` config. The search/retrieval engine is dynamically * imported here, so it stays out of the floor bundle until opted in. */ import type { SearchStrategy } from './strategy.js'; export declare function withSearch(): SearchStrategy;