import React from "react";
export type DomainEventViewPaneProps = {
    isFocused: boolean;
    isLoading: boolean;
    error?: string | null;
    domainEvent: any | null;
    maximumSequenceNumber: number | null;
};
export declare const DomainEventViewPane: React.FC<DomainEventViewPaneProps>;
