import { type PropsWithChildren } from 'react'; import type { ChartToolbarRendererProps } from './types.js'; import type { ChartLayoutDimensions } from '../chart-layout/types/chart-layout.js'; type ChartToolbarVisibilityOverlayProps = { boundSize: ChartLayoutDimensions; visibleWhenMouseInBounds: boolean; setIsVisible: (isVisible: boolean) => void; isVisible: boolean; handlerRef?: ChartToolbarRendererProps['handlerRef']; }; export declare const ChartToolbarVisibilityOverlay: (props: PropsWithChildren) => string | number | boolean | Iterable | import("react/jsx-runtime").JSX.Element | null | undefined; export {};