import type { MemoryIndex, MemoryStore } from '../../types/memory/index.js'; import type { ToolDefinition } from '../../types/tool/index.js'; /** * Build memory tools over one authoritative store. * * This is the safe default for asynchronous or lazy stores: `search_memory` * crosses the store's own `list()` boundary, so a fresh disk-backed instance * loads its durable index before answering the first search. */ export declare function buildMemoryTools(store: MemoryStore): ToolDefinition[]; /** * Build memory tools with a caller-owned search index. * * The index is deliberately authoritative in this form. It may be remote, * pre-populated or otherwise unrelated to the content store, so searching it * must not first call `store.list()` and invent a readiness dependency that * this contract never promised. */ export declare function buildMemoryTools(store: MemoryStore, index: MemoryIndex): ToolDefinition[]; export { buildSearchMemoryTool } from './search.js'; export { buildReadMemoryTool } from './read.js'; export { buildSaveMemoryTool } from './save.js'; export { buildUpdateMemoryTool } from './update.js'; export { buildDeleteMemoryTool } from './delete.js'; //# sourceMappingURL=index.d.ts.map