import { type Router } from 'express'; import { type AgentGraphAdapter } from '@jungjaehoon/mama-core'; import type { EnvelopeAuthority } from '../envelope/authority.js'; export interface AgentGraphRouterOptions { memoryAdapter: AgentGraphAdapter; envelopeAuthority?: EnvelopeAuthority; } export declare function createAgentGraphRouter(options: AgentGraphRouterOptions): Router; //# sourceMappingURL=agent-graph-handler.d.ts.map