/// import type { ScaleLinear } from 'd3-scale'; import type { DataSeries, XAxisOptions, YAxisOptions } from '@shopify/polaris-viz-core'; import type { FormattedStackedSeries } from '../../../types'; export interface HorizontalGroupProps { areAllNegative: boolean; ariaLabel: string; barHeight: number; containerWidth: number; data: DataSeries[]; groupHeight: number; id: string; index: number; isSimple: boolean; isStacked: boolean; name: string; stackedValues: FormattedStackedSeries[]; xAxisOptions: Required; xScale: ScaleLinear; yAxisOptions: Required; zeroPosition: number; } export declare function HorizontalGroup({ areAllNegative, ariaLabel, barHeight, containerWidth, data, groupHeight, id, index, isSimple, isStacked, name, stackedValues, xAxisOptions, yAxisOptions, xScale, zeroPosition, }: HorizontalGroupProps): JSX.Element; //# sourceMappingURL=HorizontalGroup.d.ts.map