/// <reference types="react" />
import "../chart-line/index.scss";
export type CustomChartBarProps = {
    contentParams: Record<string, any>;
    onChartLineItemClick: (item: any) => void;
};
declare const ChartBar: (props: CustomChartBarProps) => JSX.Element;
export default ChartBar;
