import { TinyType } from 'tiny-types';
import { Timestamp } from '../screenplay/index.js';
/**
 * Represents an internal domain event that occurs during test execution.
 *
 * @group Events
 */
export declare abstract class DomainEvent extends TinyType {
    readonly timestamp: Timestamp;
    /**
     * @param timestamp
     */
    protected constructor(timestamp?: Timestamp);
}
//# sourceMappingURL=DomainEvent.d.ts.map