import type { JSONObject } from 'tiny-types';
import { Outcome } from '../model/index.js';
import { Timestamp } from '../screenplay/index.js';
import { DomainEvent } from './DomainEvent.js';
/**
 * 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