import React from 'react';
type DataItem = {
    label: string;
    [key: string]: any;
};
type ChartSeries = {
    dataKey: string;
    label?: string;
    color?: string;
};
interface BarsProps {
    data: DataItem[];
    series: ChartSeries[];
    showGrid?: boolean;
    funcss?: string;
    showLegend?: boolean;
    showXAxis?: boolean;
    showYAxis?: boolean;
    barRadius?: number;
    barSize?: number;
}
declare const Bars: React.FC<BarsProps>;
export default Bars;
