import type { JSONObject } from 'tiny-types';
import { Outcome } from '../model';
import { Timestamp } from '../screenplay';
import { DomainEvent } from './DomainEvent';
/**
 * Emitted when all the test scenarios have finished running.
 *
 * @group Events
 */
export declare class TestRunFinished extends DomainEvent {
    readonly outcome: Outcome;
    static fromJSON(o: JSONObject): TestRunFinished;
    constructor(outcome: Outcome, timestamp?: Timestamp);
}
//# sourceMappingURL=TestRunFinished.d.ts.map