/** * Copyright (c) 2026 Tran Huu Canh (0xTh3OKrypt) * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import { type MemorySearchResult } from "./database.js"; import type { EmbeddingService } from "./embedding-service.js"; export declare function searchHybrid(query: string, scope: "global" | "repo" | "all" | undefined, repoId: string | null, limit: number, embeddingService: EmbeddingService | null): Promise; export declare function float32ArrayToBuffer(arr: Float32Array): Buffer; //# sourceMappingURL=search.d.ts.map