import { ToolDefinition, ToolInvocation } from '../types'; import { ThreadManager } from '../core/thread-manager'; export declare const toolDefinition: ToolDefinition; export declare const toolHandler: (invocation: ToolInvocation, threadManager: ThreadManager) => Promise<{ threads: import("../types").Thread[]; total: number; currentThreadId?: string; message: string; }>;