import type { DatabaseDriver } from "./db-driver.ts"; import type { MemoryEntry } from "../types.ts"; export interface MemorySearchOptions { query: string; scope?: string; category?: string; limit?: number; } /** * Full-text search across memories using FTS5 MATCH. * Returns full MemoryEntry[] ranked by relevance. * Supports optional scope and category filtering. */ export declare function searchMemories(db: DatabaseDriver, options: MemorySearchOptions): MemoryEntry[]; //# sourceMappingURL=search.d.ts.map