import { Ref } from 'vue'; import { TooltipContext } from '../types/index'; export declare const ECHARTS_TOOLTIP_KEY: unique symbol; interface TooltipOption { options: Ref; update: (data: T) => void; } export declare const useTooltip: (config?: TooltipOption) => TooltipContext | null; export {};