/** * Coupling Runner - Analyzes module dependencies and cycles * * Uses the same analysis flow as `drift coupling build` to ensure * the saved format is compatible with `drift coupling status`. * * @module commands/setup/runners/coupling */ import { BaseRunner, type RunnerContext } from './base.js'; import { type FeatureResult } from '../types.js'; export declare class CouplingRunner extends BaseRunner { constructor(ctx: RunnerContext); get name(): string; get icon(): string; get description(): string; get benefit(): string; get manualCommand(): string; run(): Promise; } //# sourceMappingURL=coupling.d.ts.map