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