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