export interface TestFailure { testName: string; error: string; file?: string; suggestedFix?: string; brainHit: boolean; } export interface TestAutofixResult { totalTests: number; passed: number; failed: number; failures: TestFailure[]; autoFixAvailable: number; rawOutput: string; } export declare function runTestAutofix(command: string | undefined, projectRoot: string): TestAutofixResult; //# sourceMappingURL=TestAutofixInterceptor.d.ts.map