import { IBarProps } from './Bar';
interface IProps extends Omit<IBarProps, "GetBarStyle"> {
    AggregationType?: "min_max_avg";
}
declare const BarAggregate: (props: IProps) => JSX.Element;
export default BarAggregate;
