/**
 * @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<import('vue').ExtractPropTypes<{
    className: PropType<string>;
    popupShown: PropType<boolean>;
    popupAlign: {
        type: PropType<Align>;
        default: () => any;
    };
    popupOffset: {
        type: PropType<Offset>;
    };
    popupStyles: {
        type: PropType<any>;
    };
    popupContent: PropType<Function>;
}>, {}, {}, {}, {
    onChartMouseLeave(e: any): boolean;
    onMouseLeave(_e: any): void;
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
    className: PropType<string>;
    popupShown: PropType<boolean>;
    popupAlign: {
        type: PropType<Align>;
        default: () => any;
    };
    popupOffset: {
        type: PropType<Offset>;
    };
    popupStyles: {
        type: PropType<any>;
    };
    popupContent: PropType<Function>;
}>> & Readonly<{}>, {
    popupAlign: Align;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
export { TooltipPopup };
