import type { Settings } from "../config/settings"; import type { MemoryBackend } from "./types"; /** * Pick the active memory backend for a Settings instance. * * Selection rules (single source of truth — every memory consumer routes * through this): * - `memory.backend === "hindsight"` → Hindsight remote memory * - `memory.backend === "local"` → local pipeline * - everything else → no-op * * `memories.enabled` remains accepted only as a legacy migration input. Once * a config is loaded, `memory.backend` is the sole runtime selector. */ export declare function resolveMemoryBackend(settings: Settings): MemoryBackend;