{
  "prefixCls": "string", // 类名前缀
  "overlayClassName": "string", // 卡片类名
  "style": "object(React.CSSProperties)", // 
  "overlayStyle": "object(React.CSSProperties)", // 卡片样式
  "placement": "string", // 气泡框位置，可选 top left right bottom topLeft topRight bottomLeft bottomRight leftTop leftBottom rightTop rightBottom 默认 top
  "builtinPlacements": "object", // 
  "defaultVisible": "boolean", // 默认是否显隐 默认值false
  "visible": "boolean", // 用于手动控制浮层显隐 默认值false
  "onVisibleChange": "(visible: boolean) => void", // 显示隐藏的回调
  "mouseEnterDelay": "number", // 鼠标移入后延时多少才显示 Tooltip，单位：秒 默认 0
  "mouseLeaveDelay": "number", // 鼠标移出后延时多少才隐藏 Tooltip，单位：秒 默认 0.1
  "transitionName": "string", // 转换名称
  "trigger": "string", // 触发行为，可选 hover/focus/click/contextMenu
  "openClassName": "string", // 
  "arrowPointAtCenter": "boolean", // 箭头是否指向目标元素中心 默认 ture
  "autoAdjustOverflow": "boolean | AdjustOverflow", // 气泡被遮挡时自动调整位置 默认 true
  // getTooltipContainer had been rename to getPopupContainer
  "getTooltipContainer": "(triggerNode: Element) => HTMLElement", // 浮层渲染父节点，默认渲染到 body 上
  "getPopupContainer": "(triggerNode?: HTMLElement) => HTMLElement", // 
  "children": "React.ReactNode",
  // align is a more higher api
  "align": "TooltipAlignConfig", // 该值将合并到 placement 的配置中，设置参考 rc-tooltip
  "showOverflowTooltip": "boolean", // 根据文本是否打点来决定是否展示Tooltip，注意此时节点需要是仅有一层标签包裹的纯文本才能正确计算
  "isHTMLContent": "boolean" // 是否提示文字为html，如果置为true则正文会被当做html识别，同时会有xss潜在风险。
}