import React from "react";
import { type PaneProps } from "../components/pane.js";
export type AggregateDiffPaneProps = PaneProps & {
    current: object | null;
    previous: object | null;
};
export declare const AggregateDiffPane: React.FC<AggregateDiffPaneProps>;
