/// import { SeriesPoint } from 'd3-shape'; import { ScaleInput } from '@vx/scale'; import { AddSVGProps, PositionScale, BaseBarStackProps, StackKey, Accessor } from '../types'; export declare type BarStackHorizontalProps = BaseBarStackProps & { /** Returns the value mapped to the x0 of a bar. */ x0?: Accessor, ScaleInput>; /** Returns the value mapped to the x1 of a bar. */ x1?: Accessor, ScaleInput>; /** Returns the value mapped to the y of a bar. */ y: Accessor>; }; export default function BarStackHorizontal({ data, className, top, left, y, x0, x1, xScale, yScale, color, keys, value, order, offset, children, ...restProps }: AddSVGProps, SVGRectElement>): JSX.Element; //# sourceMappingURL=BarStackHorizontal.d.ts.map