import React from "react";
export type AggregateViewPaneProps = {
    isFocused: boolean;
    isLoading: boolean;
    error?: string | null;
    isDeleted: boolean;
    aggregate: object | null;
};
export declare const AggregateViewPane: React.FC<AggregateViewPaneProps>;
