import type { TooltipProps } from "../Tooltip/Tooltip"; export interface MaybeTooltipProps extends TooltipProps { /** Whether to enable the tooltip at all */ showTooltip?: boolean; /** Allow opening tooltip on mobile tap (not supported by new Tooltip) */ supportMobileTap?: boolean; } /** * Conditionally displays a tooltip. */ declare function MaybeTooltip({ tooltip, showTooltip, placement, defaultOpen, showDelay, maxWidth, supportMobileTap: _supportMobileTap, // Note: supportMobileTap is handled internally by the new Tooltip className, children, }: MaybeTooltipProps): import("react/jsx-runtime").JSX.Element; export default MaybeTooltip;