import type { IndexMemory } from "../../indexer/index-memory.js"; export declare const promoteTool: { name: string; description: string; inputSchema: { type: "object"; properties: { id: { type: string; description: string; }; }; required: string[]; }; }; export declare const demoteTool: { name: string; description: string; inputSchema: { type: "object"; properties: { id: { type: string; description: string; }; }; required: string[]; }; }; export declare function handlePromote(indexer: IndexMemory, args: Record): string; export declare function handleDemote(indexer: IndexMemory, args: Record): string;