import type { IndexFiles } from "../../indexer/index-files.js"; import type { IndexMemory } from "../../indexer/index-memory.js"; export declare const wakeupTool: { name: string; description: string; inputSchema: { type: "object"; properties: { format: { type: string; enum: string[]; description: string; }; max_tokens: { type: string; description: string; }; }; }; }; export declare function handleWakeup(indexer: IndexFiles & IndexMemory, args: Record): string; export declare function generateWakeup(indexer: IndexFiles & IndexMemory, options?: { maxTokens?: number; format?: "markdown" | "plain"; }): string;