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