import type { AgentAdapter, Backend } from './types.js'; export * from './types.js'; export * from './capabilities.js'; export * from './normalize/event-types.js'; export * from './normalize/hooks.js'; export * from './normalize/tool-names.js'; export declare function getAdapter(backend: Backend): AgentAdapter; export declare function registerPISessionPath(sessionId: string, sessionPath: string): void; export declare function closeAllAdapters(): Promise;