export interface BarComponentProps {
    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;
}
declare function BarChartComponent(props: BarComponentProps): JSX.Element;
export default BarChartComponent;
