import type { ActiveInjection } from '../../lib/injection-engine/types.js'; /** Build `'memory'`-flavored ActiveInjections from the per-id recall keys in `parent`. */ export declare function memoryRecallInjections(parent: Record, memoryIds: readonly string[]): ActiveInjection[]; /** * Append memory recalls to the active-injection set a slot-fork inputMapper hands to * the system / messages slot subflows. No-op when the agent has no memories. */ export declare function withMemoryRecall(activeInjections: readonly ActiveInjection[] | undefined, parent: Record, memoryIds: readonly string[]): readonly ActiveInjection[];