import { TestFailedError } from './TestFailedError';
import { TestResults } from '../output/TestResults';
export declare class NewTestError extends TestFailedError {
constructor(message: string, results?: TestResults);
constructor(results: TestResults);
}