import { TooltipProps } from "./Tooltip.types.js"; import * as react_jsx_runtime1 from "react/jsx-runtime"; //#region src/Tooltip/Tooltip.d.ts /** * @deprecated * Note: Tooltip has been replaced by QTip - a singleton JS tooltip that behaves well even with overflow settings :) * See @QTip for more info! * * This component displays a Tooltip for the provided children. It is a CSS only tooltip that will not display * correctly if a parent element has an overflow CSS property assigned. Please use QTip to ensure your tooltips * display correctly. */ declare const Tooltip: ({ position, children, text, delay }: TooltipProps) => react_jsx_runtime1.JSX.Element; //#endregion export { Tooltip };