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