import type { Config } from '../config/schema.js'; import type { MemoryManager } from '../agent/memory/manager.js'; export interface UserContextRuntime { memoryManager: MemoryManager; } /** Owns the process-wide user context runtime shared by every agent and workspace. */ export declare class UserContextRuntimeRegistry { private runtime?; getOrCreate(config: Config): UserContextRuntime; clear(): Promise; }