import React from 'react';
import './style.scss';
type DataItem = {
    name: string;
    [key: string]: number | string | undefined;
};
type StackedBarChartProps = {
    data: DataItem[];
    className?: string;
    barSize: number;
    width: string;
    height: number;
    stackKeys: string[];
    colors: string[];
    yAxisFontSize?: string;
    xAxisFontSize?: string;
    yAxisOffset?: number;
    CustomTooltip?: React.FC;
    formatterLegendFunction?: React.FC;
    withHorizontalGrid?: boolean;
    withVerticalGrid?: boolean;
    withLegend?: boolean;
    tickCount?: number;
};
declare const StackedBarChart: React.FC<StackedBarChartProps>;
export default StackedBarChart;
