import { FunctionComponent, ReactElement } from 'react';
import { AggregationTreeProps } from './AggregationTree';
export interface AggregationTreeGroupsProps {
    trees: ReactElement<AggregationTreeProps>[];
}
declare const AggregationTreeGroups: FunctionComponent<AggregationTreeGroupsProps>;
export default AggregationTreeGroups;
