import { CSSProperties, DefineComponent } from 'vue'; import '@antv/graphin/es/components/Tooltip/index.css'; export interface TooltipProps { /** * @description tooltip绑定的图元素 * @default node */ bindType?: 'node' | 'edge'; /** * @description children * @type React.ReactChild | JSX.Element */ /** * @description styles */ style?: CSSProperties; /** * @description Tooltip 的位置 */ placement?: 'top' | 'bottom' | 'right' | 'left' | 'center'; /** * @description 是否展示小箭头 * @description.en-US display arrow */ hasArrow?: boolean; } export declare const Tooltip: DefineComponent; export * from './useTooltip'; export default Tooltip;