/** * Module Coupling Command - drift coupling * * Analyze module dependencies, detect cycles, and calculate coupling metrics. * Based on Robert C. Martin's coupling metrics (Ca, Ce, Instability, Abstractness, Distance). */ import { Command } from 'commander'; export interface CouplingOptions { format?: 'text' | 'json'; verbose?: boolean; limit?: number; minCoupling?: number; maxCycleLength?: number; minSeverity?: 'info' | 'warning' | 'critical'; } export declare function createCouplingCommand(): Command; //# sourceMappingURL=coupling.d.ts.map