/** * @author Hanz * @date 2021/8/27 下午1:29 * @description help */ import React, { FunctionComponent } from 'react'; import { TooltipProps } from '../Tooltip'; import './index.scss'; export interface HelpProps extends Omit { /** 提示文字 */ title: NonNullable; /** 是否显示箭头 */ arrow?: boolean; /** 位置 */ placement?: 'bottom-end' | 'bottom-start' | 'bottom' | 'left-end' | 'left-start' | 'left' | 'right-end' | 'right-start' | 'right' | 'top-end' | 'top-start' | 'top'; /** cls */ className?: string; /** style */ style?: React.CSSProperties; /** 子节点 */ children?: React.ReactNode; } declare const Help: FunctionComponent; export default Help;