import React from "react"; import { WarpTooltip } from "./tooltip.js"; /** * A tooltip is a message box that is displayed when a user hovers over or gives focus to a UI element. * * Tooltips should be used sparingly and contain succinct, supplementary information. * * @example * ```html * * I am a tooltip * ``` */ export declare const Tooltip: React.ForwardRefExoticComponent, "for" | "noArrow" | "open" | "placement" | "showDelay" | "hideDelay" | "renderRoot" | "isUpdatePending" | "hasUpdated" | "addController" | "removeController" | "connectedCallback" | "disconnectedCallback" | "attributeChangedCallback" | "requestUpdate" | "updateComplete" | "firstUpdated" | "render" | "renderOptions" | "show" | "hide"> & {} & Partial> & React.RefAttributes, "ref"> & { htmlFor?: string; } & React.RefAttributes>;