import { TooltipProps } from 'antd'; import React from 'react'; import './index.less'; import { LiteralUnion } from 'antd/lib/_util/type'; interface TooltipExtraProps { hideArrow?: boolean; color?: LiteralUnion<'pink' | 'red' | 'yellow' | 'orange' | 'cyan' | 'green' | 'blue' | 'purple' | 'geekblue' | 'magenta' | 'volcano' | 'gold' | 'lime' | 'success' | 'warning' | 'error' | 'tips', string>; } declare const Tooltip: (props: Omit & TooltipExtraProps) => React.JSX.Element; export { Tooltip };