import React from "react"; import { AbstractTooltip, AbstractTooltipProps } from "../AbstractTooltip"; declare type Props = Pick, "children" | "className" | "content" | "disabled" | "interactive" | "placement" | "visible"> & AbstractTooltipProps; /** * Tooltip * * Intended to show non-essential, non-interactive information after a short * delay when hovering on an element. We also wait for the user's cursor to rest * on the element; meaning we won't show a Tooltip while the cursor is moving */ export declare const Tooltip: React.FC; export {};