/** * @file Tooltip组件 * @author huoyuxuan * */ import React from 'react'; import { TooltipProps as AntdTooltipProps, TooltipPropsWithTitle as AntdTooltipPropsWithTitle, TooltipPropsWithOverlay as AntdTooltipPropsWithOverlay } from 'antd/es/tooltip'; import './index.less'; export type TooltipProps = AntdTooltipProps; export type TooltipInterface = React.ForwardRefExoticComponent<(AntdTooltipPropsWithTitle & React.RefAttributes) | (AntdTooltipPropsWithOverlay & React.RefAttributes)>; declare const OSUITooltip: TooltipInterface; export default OSUITooltip;