import { FC } from 'react';
import { ChartShallowDataShape } from '../common/data';
import { BarChartProps } from './BarChart';
export interface HistogramBarChartProps extends BarChartProps {
    /**
     * Data the chart will receive to render.
     *
     * @default []
     */
    data: ChartShallowDataShape[];
}
export declare const HistogramBarChart: FC<Partial<HistogramBarChartProps>>;
