import type { KlawConfig } from "../config/types.klaw.js"; export declare function getActiveMemorySearchManager(params: { cfg: KlawConfig; agentId: string; purpose?: "default" | "status" | "cli"; }): Promise<{ manager: import("./memory-state.js").RegisteredMemorySearchManager | null; error?: string; }>; export declare function resolveActiveMemoryBackendConfig(params: { cfg: KlawConfig; agentId: string; }): import("./memory-state.js").MemoryRuntimeBackendConfig | null; export declare function closeActiveMemorySearchManagers(cfg?: KlawConfig): Promise; export declare function closeActiveMemorySearchManager(params: { cfg: KlawConfig; agentId: string; }): Promise;