import type { ChartToolTipProps } from '../types';
export interface DataPoint {
    value: number;
    name: string;
}
interface DistributionChartProps {
    data: DataPoint[];
    chartToolTip?: ChartToolTipProps;
}
declare const DistributionChart: ({ data, chartToolTip }: DistributionChartProps) => JSX.Element;
export default DistributionChart;
