import { FC } from "react"; interface BarChartProps { active?: boolean; activeColor?: string; activeIndex?: number; barBackGroundColor?: string; barColor?: string; barRadius?: number; barSize?: number; chartData?: unknown[]; dataKey: string; height?: number; inActiveColor?: string; secondaryBarBackGroundColor?: string; secondaryBarColor?: string; secondaryDataKey?: string; showBackGround?: boolean; showGridLine?: boolean; showLegend?: boolean; showTooltip?: boolean; showXaxis?: boolean; showYaxis?: boolean; width?: number; XAxisDataKey?: string; YAxisDataKey?: string; } export declare const BarChart: FC; export {};