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