import React from 'react'; export interface ProTooltipPropsType { text?: string | React.ReactNode; width?: string; line?: number; isResponsiveWidth?: Boolean; className?: string; children?: React.ReactNode; /** 样式 */ style?: React.CSSProperties; /** 兼容 */ [key: string]: any; } export interface RefObjectPropsType { readonly current: T | null; }