import type { ObjectDirective } from 'vue'; import { type Props } from 'tippy.js'; import type { noop } from '../types'; import 'tippy.js/dist/tippy.css'; type MouseEnterFunc = (e?: MouseEvent) => void; type OverflowElement = HTMLElement & { mouseEnterFunc?: MouseEnterFunc; mouseLeaveFunc?: MouseEnterFunc; unObserverFunc?: typeof noop; }; export declare const OverflowTips: ObjectDirective & { disabled?: boolean; text?: string; }>; export {};