import type { InjectionKey, Ref } from 'vue'; import type { UseNamespaceReturn } from 'element-plus/es/hooks'; export declare type TooltipV2Context = { onClose: () => void; onDelayOpen: () => void; onOpen: () => void; contentId: Ref; triggerRef: Ref; ns: UseNamespaceReturn; }; export declare type TooltipV2ContentContext = { arrowRef: Ref; }; export declare const tooltipV2RootKey: InjectionKey; export declare const tooltipV2ContentKey: InjectionKey; export declare const TOOLTIP_V2_OPEN = "tooltip_v2.open";