/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ /** * @hidden */ export type TooltipPosition = 'right' | 'left' | 'bottom' | 'top' | 'auto'; /** * Specifies when the options of the [showTooltip](https://www.telerik.com/kendo-react-ui/components/tooltip/api/tooltipprops#toc-showoption) props. * - `hover`—Shows the Tooltip when the mouse hovers over the target element(Set to `true` by default). * - `click`—Shows the Tooltip when the target element is clicked(Set to `false` by default). * - `focus`—Shows the Tooltip when the target element is focused(Set to `false` by default). * - `keys`—Shows the Tooltip when the target element is focused and a specific key is pressed(Set to `false` by default). * - `none`—Doesn't show the Tooltip(Set to `false` by default). */ export type TooltipShowOptions = { hover?: boolean; click?: boolean; focus?: boolean; keys?: string[]; none?: boolean; }; /** * @hidden */ export declare const getLeftPosition: (left: any, elementWidth: any, targetElement: any, anchorElement: any, position: any) => any; /** * @hidden */ export declare const getTopPosition: (top: any, targetElement: any, elementHeight: any, anchorElement: any, position: any) => any; /** * @hidden */ export declare const getDomRect: (currentTarget: any) => any; /** * @hidden */ export declare const toolTipSelectors: string[]; /** * @hidden */ export declare const isTooltipElement: (element: any) => boolean;