import { Dimension } from '@embeddable.com/core'; import { BarChartStackedBaseProps } from '../bars.types'; export type BarChartGroupedProProps = BarChartStackedBaseProps & { xAxis: Dimension; reverseXAxis?: boolean; yAxisRangeMax?: number; yAxisRangeMin?: number; }; declare const BarChartGroupedPro: (props: BarChartGroupedProProps) => import("react").JSX.Element; export default BarChartGroupedPro; //# sourceMappingURL=index.d.ts.map