///
import type { ScaleLinear } from 'd3-scale';
import type { LabelFormatter } from '@shopify/polaris-viz-core';
import type { FormattedStackedSeries } from '../../../types';
export interface HorizontalStackedBarsProps {
activeGroupIndex: number;
animationDelay: number;
ariaLabel: string;
barHeight: number;
dataKeys: string[];
groupIndex: number;
id: string;
name: string;
stackedValues: FormattedStackedSeries[];
xScale: ScaleLinear;
labelFormatter: LabelFormatter;
isSimple: boolean;
areAllNegative?: boolean;
}
export declare function HorizontalStackedBars({ activeGroupIndex, animationDelay, barHeight, dataKeys, groupIndex, id, name, stackedValues, xScale, areAllNegative, isSimple, labelFormatter, }: HorizontalStackedBarsProps): JSX.Element;
//# sourceMappingURL=HorizontalStackedBars.d.ts.map