import { type Token } from '@frontmcp/di'; import { type FlowMetadata, type FlowRecord, type FlowType } from '../common'; export declare function collectFlowMetadata(cls: FlowType): FlowMetadata; export declare function normalizeFlow(item: FlowType): FlowRecord; /** * For graph/cycle detection. Returns dependency tokens that should be graphed. * - CLASS_TOKEN: deps come from the class constructor */ export declare function flowDiscoveryDeps(rec: FlowRecord): Token[]; //# sourceMappingURL=flow.utils.d.ts.map