import React, { FC } from 'react'; import { IProps as ITooltipProps } from '../tooltip'; interface IProps extends ITooltipProps { className?: string; textClassName?: string; help?: string; showIcon?: boolean; children?: React.ReactNode; style?: React.CSSProperties; onlyShowIcon?: boolean; } declare const TextWithHelp: FC; export default TextWithHelp;