import React from "react"; declare type BarGraphProps = { align?: "left" | "right" | "center"; axisTitle: string; dark?: boolean; xAxisCategories: []; yAxisMin: number; yAxisMax: number; chartData: { name: string; data: number[]; }[]; className?: string; id: any; pointStart: number | any; subTitle?: string; title: string; type?: string; legend?: boolean; toggleLegendClick?: boolean; height?: string; colors: string[]; layout?: "horizontal" | "vertical" | "proximate"; verticalAlign?: "top" | "middle" | "bottom"; x?: number; y?: number; aria?: { [key: string]: string; }; data?: { [key: string]: string; }; }; declare const BarGraph: ({ aria, data, align, axisTitle, dark, chartData, className, colors, id, pointStart, subTitle, type, title, xAxisCategories, yAxisMin, yAxisMax, legend, toggleLegendClick, height, layout, verticalAlign, x, y, ...props }: BarGraphProps) => React.ReactElement; export default BarGraph;