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