import type { IndexMemory } from "../../indexer/index-memory.js"; export declare const pinTool: { name: string; description: string; inputSchema: { type: "object"; properties: { memory_id: { type: string; description: string; }; target: { type: string; description: string; }; }; required: string[]; }; }; export declare const unpinTool: { name: string; description: string; inputSchema: { type: "object"; properties: { memory_id: { type: string; description: string; }; target: { type: string; description: string; }; }; required: string[]; }; }; export declare function handlePin(indexer: IndexMemory, args: Record): string; export declare function handleUnpin(indexer: IndexMemory, args: Record): string;