import React from "react";
export type AggregateDiffPaneProps = {
isFocused: boolean;
isLoading: boolean;
error?: string | null;
current: object | null;
previous: object | null;
};
export declare const AggregateDiffPane: React.FC<AggregateDiffPaneProps>;