import type { IndexMemory } from "../../indexer/index-memory.js"; export declare const rememberTool: { name: string; description: string; inputSchema: { type: "object"; properties: { content: { type: string; description: string; }; category: { type: string; enum: string[]; description: string; }; tags: { type: string; items: { type: string; }; description: string; }; related_files: { type: string; items: { type: string; }; description: string; }; confidence: { type: string; description: string; }; tier: { type: string; enum: string[]; description: string; }; kind: { type: string; enum: string[]; description: string; }; scope: { type: string; enum: string[]; description: string; }; }; required: string[]; }; }; export declare function handleRemember(indexer: IndexMemory, args: Record): Promise;