export interface StackedBarComponentProps {
    componentName: string;
    title?: string;
    titleFontColor?: string;
    titleFontSize?: string;
    titleFontWeight?: string;
    table_name: string;
    data_columns: string[];
    orientation?: string;
    showLegend?: boolean;
    width: number;
    height: number;
    barsColor: string;
    barSize?: number;
}
declare function StackedBarChartComponent(props: StackedBarComponentProps): JSX.Element;
export default StackedBarChartComponent;
