import React from "react";
import { type PaneProps } from "../components/pane.js";
export type DomainEventViewPaneProps = PaneProps & {
    domainEvent: any | null;
    maximumSequenceNumber: number | null;
};
export declare const DomainEventViewPane: React.FC<DomainEventViewPaneProps>;
