import type { TooltipProps } from "./types"; /** * Single source of truth for how long a tooltip waits before appearing. * Editor tooltips are the primary affordance for icon-only toolbar buttons, so a * long wait reads as unresponsive; ~100ms is short enough to feel immediate while * still suppressing tooltips for pointers that are merely passing over a control. */ export declare const TOOLTIP_SHOW_DELAY_MS = 100; export declare const Tooltip: ({ children, enabled, title, shortcut, tippyOptions, }: TooltipProps) => JSX.Element; export default Tooltip;