import React from "react";
import { type PaneProps } from "../components/pane.js";
export type AggregateViewPaneProps = PaneProps & {
    aggregateType: string | null;
    aggregateId: string | null;
    aggregate: object | null;
    isDeleted: boolean;
};
export declare const AggregateViewPane: React.FC<AggregateViewPaneProps>;
