import { ITest, ITestCase, ITestFixture } from "../_interfaces/index";
import { TestOutcome } from "../results/test-outcome";
export interface ITestCompleteEvent {
    testId: number;
    testCase: ITestCase;
    test: ITest;
    testFixture: ITestFixture;
    outcome?: TestOutcome;
    error?: Error | null;
}
export declare type IOnTestCompleteCBFunction = (testCompleted: ITestCompleteEvent) => void;
