import React from 'react'; import type { TooltipContainerProps } from './types'; /** * The preferred export for implementing boundary aware tooltips * `` should not be used unless the placement logic needs to be heavily customized * Make sure you utilize the render prop pattern to ensure proper ref forwarding, this prevents * this component from needing to render its own `span` element and will ensure a consistent layout */ export declare function TooltipContainer({ bgColor, boundary, boundaryPadding, color, children, className, containerModifierClass, delay, enabled, enableArrow, fontSize, offset, placement, show, tooltipContent, portalContainer, zIndex, ...rest }: TooltipContainerProps): React.JSX.Element;