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