import * as React from 'react'; export type TooltipRootProps = { /** The tooltip trigger and content */ children: React.ReactNode; /** The duration from when the mouse enters a tooltip trigger until the tooltip opens. */ delayDuration?: number; /** Event handler called when the open state of the tooltip changes. */ onOpenChange?: (open: boolean) => void; /** The controlled open state of the tooltip. Must be used in conjunction with onOpenChange. */ open?: boolean; /** How much time a user has to enter another trigger without incurring a delay again. */ skipDelayDuration?: number; }; export declare const TooltipRoot: ({ children, delayDuration, onOpenChange, open, skipDelayDuration }: TooltipRootProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=TooltipRoot.d.ts.map