/** * Bootstrap helper: registers all built-in agent adapters with a client. * * The core `AdapterRegistry` starts empty — adapters must be explicitly * registered. This module centralises that wiring so the CLI (and any * consumer) gets all built-in adapters with a single call. */ import type { AgentMuxClient } from '@a5c-ai/comm-adapter'; /** * Registers every built-in adapter on the given client's adapter registry. * Safe to call multiple times — `register()` replaces existing entries. */ export declare function registerBuiltInAdapters(client: AgentMuxClient): void;