import { Token, AdapterMetadata, AdapterRecord, AdapterType } from '@frontmcp/sdk'; 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[];