import { type Token } from '@frontmcp/di'; import { type AdapterMetadata, type AdapterRecord, type AdapterType } from '../common'; export declare function collectAdapterMetadata(cls: AdapterType): AdapterMetadata; export declare function normalizeAdapter(item: AdapterType): AdapterRecord; /** * For graph/cycle detection. Returns dependency tokens that should be graphed. * - VALUE: no deps * - FACTORY: only includes deps that are registered (others will be resolved) * - CLASS / CLASS_TOKEN: deps come from the class constructor or static with(...) */ export declare function adapterDiscoveryDeps(rec: AdapterRecord): Token[]; //# sourceMappingURL=adapter.utils.d.ts.map