import { type Router } from 'express'; import type { EnvelopeAuthority } from '../envelope/authority.js'; import { type ContextCompileService, type ContextCompileServiceAdapter } from '../agent/context-compile-service.js'; export interface AgentContextRouterOptions { memoryAdapter: ContextCompileServiceAdapter; envelopeAuthority?: EnvelopeAuthority; contextCompileService?: ContextCompileService; } export declare function createAgentContextRouter(options: AgentContextRouterOptions): Router; //# sourceMappingURL=agent-context-handler.d.ts.map