import type { EmbeddingProvider } from "./embedding/types.js"; import type { SearchInput, SearchResult } from "./types.js"; export interface SearchOptions { wsPath: string; embedder: EmbeddingProvider; } /** * Search the workspace for files matching the query. * * Uses vector similarity search only. */ export declare function search(input: SearchInput, opts: SearchOptions): Promise; //# sourceMappingURL=search.d.ts.map