import { type PropsWithChildren, type MouseEvent as ReactMouseEvent } from 'react'; import { VirtualEstimatedSize } from '../../../../core/components/tooltip/InteractiveChartTooltip/types/virtual-estimated-size.js'; interface CategoricalBarChartTooltipWrapperProps { onMouseLeave: (event?: ReactMouseEvent) => void; onScrollContent: (event?: Event) => void; estimatedItemSize: VirtualEstimatedSize; } export declare const CategoricalBarChartTooltipWrapper: ({ onMouseLeave, onScrollContent, estimatedItemSize, children, }: PropsWithChildren) => import("react/jsx-runtime").JSX.Element | null; export {};