/** * Test Topology Command - drift test-topology * * Analyze test-to-code mappings, mock patterns, and test quality. * Answers: "Which tests cover this code?" and "What's the minimum test set?" */ import { Command } from 'commander'; export interface TestTopologyOptions { format?: 'text' | 'json'; verbose?: boolean; limit?: number; minRisk?: 'low' | 'medium' | 'high'; } export declare function createTestTopologyCommand(): Command; //# sourceMappingURL=test-topology.d.ts.map