import type { JSONObject } from 'tiny-types';
import { CorrelationId, Name } from '../model';
import { Timestamp } from '../screenplay';
import { DomainEvent } from './DomainEvent';
/**
 * @group Events
 */
export declare class TestRunnerDetected extends DomainEvent {
    readonly sceneId: CorrelationId;
    readonly name: Name;
    static fromJSON(o: JSONObject): TestRunnerDetected;
    constructor(sceneId: CorrelationId, name: Name, timestamp?: Timestamp);
}
//# sourceMappingURL=TestRunnerDetected.d.ts.map