import type { BotConfig } from "../../config/config.js"; import type { AnyAgentTool } from "./common.js"; export declare function createMemorySearchTool(options: { config?: BotConfig; agentSessionKey?: string; }): AnyAgentTool | null; export declare function createMemoryGetTool(options: { config?: BotConfig; agentSessionKey?: string; }): AnyAgentTool | null;