/** * ConnectorRegistry — in-memory registry for all active connectors. */ import type { ConnectorHealth, IConnector } from './types.js'; export declare class ConnectorRegistry { private connectors; register(name: string, connector: IConnector): void; get(name: string): IConnector | undefined; getActive(): Map; disposeAll(): Promise; healthCheckAll(): Promise>; } //# sourceMappingURL=connector-registry.d.ts.map