import * as TooltipPrimitive from "@radix-ui/react-tooltip"; import { type Hook } from "@webstudio-is/react-sdk/runtime"; import { type ReactNode } from "react"; export declare const Tooltip: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; /** * We're not exposing the 'asChild' property for the Trigger. * Instead, we're enforcing 'asChild=true' for the Trigger and making it style-less. * This avoids situations where the Trigger inadvertently passes all styles to its child, * which would prevent us from displaying styles properly in the builder. */ export declare const TooltipTrigger: import("react").ForwardRefExoticComponent<{ children: ReactNode; } & import("react").RefAttributes>; export declare const TooltipContent: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; export declare const hooksTooltip: Hook;