/** * Framework Detector * Auto-detects testing frameworks from project structure */ import type { DetectedFramework } from '../types.js'; export declare class FrameworkDetector { private projectRoot; constructor(projectRoot: string); /** * Detect testing framework and project type */ detect(): Promise; private readPackageJson; private detectDotNet; private detectProjectType; private detectTestingFramework; private detectDotNetFramework; private findJestConfig; private findVitestConfig; private findTestDirectory; private findDotNetTestDirectory; private hasReactTestingLibrary; private hasTestingLibrary; private getJestVersion; private getVitestVersion; } //# sourceMappingURL=framework-detector.d.ts.map