import type { MemoryAgents } from "./config.js"; import type { AgentConfig, PluginConfig } from "./sdk.js"; export declare const MEMORY_TOOL_NAMES: readonly ["memory_save", "memory_delete", "memory_list", "memory_search", "memory_read"]; export declare function buildAgentDefaults(agents: MemoryAgents): Record; export declare function mergeAgentConfig(defaults: AgentConfig, user: AgentConfig | undefined): AgentConfig; export declare class AgentRegistry { private readonly defaults; private readonly merged; constructor(agents: MemoryAgents); register(config: PluginConfig): void; toolsFor(name: string): Record | undefined; }