import type { MemoryIndex, MemoryStore } from '../../types/memory/index.js'; import type { ToolDefinition } from '../../types/tool/index.js'; /** Build search over a caller-owned, already-ready synchronous index. */ export declare function buildSearchMemoryTool(index: MemoryIndex): ToolDefinition; /** Build search over the store's authoritative asynchronous read boundary. */ export declare function buildStoreSearchMemoryTool(store: MemoryStore): ToolDefinition; //# sourceMappingURL=search.d.ts.map