import React from 'react'; export interface TooltipProps { className: string; visible: boolean; /** 提示文字 */ title: React.ReactNode; /** 颜色 */ color: string; /** 位置 */ placement: 'top' | 'right' | 'bottom' | 'left' | 'topLeft' | 'topRight' | 'rightTop' | 'rightBottom' | 'bottomLeft' | 'bottomRight' | 'leftTop' | 'leftBottom'; /** 自动关闭延迟时间 */ delay: number; /** 是否可编辑 */ closeable: boolean; /** 关闭事件回调 */ onClose: () => void; } export declare const Tooltip: React.FC>; export default Tooltip;