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.PropsWithoutRef<TooltipContainerProps> & React.RefAttributes<HTMLDivElement>>;
export default TooltipContainer;
