import type { Task } from "./types"; /** In-memory task store shared across tool calls within a session. */ export declare const taskStore: Map; /** Reset the store — used in tests to ensure isolation. */ export declare function resetTaskStore(): void; /** Generate a unique task ID. */ export declare function generateTaskId(): string;