import 'rc-tooltip/assets/bootstrap_white.css'; import { FC } from 'react'; import './index.css'; import './arrow.css'; import { ToolTipProps } from '.'; export interface DialogToolTipProps extends ToolTipProps { /** * 点击关闭按钮的回调 */ /** @en * Size of the input box: * medium * large */ onClose?: () => void; closeable?: boolean; } export declare const FcrDialogToolTip: FC;