/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { Align, Offset } from '@progress/kendo-vue-popup'; import { PropType } from 'vue'; /** * @hidden */ export interface TooltipPopupProps { className?: string | undefined; popupShown: boolean; popupAlign?: Align; popupOffset?: Offset; popupStyles?: any; popupContent: Function; } /** * @hidden */ declare const TooltipPopup: import('vue').DefineComponent; popupShown: PropType; popupAlign: { type: PropType; default: () => any; }; popupOffset: { type: PropType; }; popupStyles: { type: PropType; }; popupContent: PropType; }>, {}, {}, {}, { onChartMouseLeave(e: any): boolean; onMouseLeave(_e: any): void; }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly; popupShown: PropType; popupAlign: { type: PropType; default: () => any; }; popupOffset: { type: PropType; }; popupStyles: { type: PropType; }; popupContent: PropType; }>> & Readonly<{}>, { popupAlign: Align; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { TooltipPopup };