import React from 'react'; import { PositionScale, StackPathConfig } from '@visx/shape/lib/types'; import { BaseBarSeriesProps } from './BaseBarSeries'; import { BarsProps, SeriesProps } from '../../../types'; declare type BarStackChildProps = Omit, 'BarsComponent'>; export declare type BaseBarStackProps = { /** `BarSeries` elements, note we can't strictly enforce this with TS yet. */ children: React.ReactElement> | React.ReactElement>[]; /** Rendered component which is passed BarsProps by BaseBarStack after processing. */ BarsComponent: React.FC>; } & Pick, 'offset' | 'order'> & Pick, 'onPointerMove' | 'onPointerOut' | 'onPointerUp' | 'onPointerDown' | 'onBlur' | 'onFocus' | 'enableEvents'>; declare function BaseBarStack({ children, order, offset, BarsComponent, onBlur, onFocus, onPointerMove, onPointerOut, onPointerUp, onPointerDown, enableEvents, }: BaseBarStackProps): JSX.Element | null; export default BaseBarStack; //# sourceMappingURL=BaseBarStack.d.ts.map