import { type TooltipPrimitiveProps } from './tooltip-primitive'; export interface TooltipContainerProps extends TooltipPrimitiveProps { } /** * Used as the default tooltip container component for the exported `Tooltip` component. * Adds some styles to the tooltip primitive. */ declare const TooltipContainer: React.ForwardRefExoticComponent & React.RefAttributes>; export default TooltipContainer;