import React from 'react';
import { VisType, AggNodeConfig } from '../../common';
interface ToolBarProps {
    visType: VisType;
    onVisTypeChange: (visType: VisType) => void;
    showAggregatedNode: AggNodeConfig;
    onShowAggNodeChange: (values: AggNodeConfig) => void;
}
declare const ToolBar: React.FC<ToolBarProps>;
export default ToolBar;
