import React from 'react'; import { IPopup } from '../popup'; export interface ITooltip extends Omit { /** Mandatory tooltip content */ contentTitle?: string; /** Optional description content */ contentDesc?: string; /** Optional image URL */ contentImageUrl?: string; isDisabled?: boolean; delay?: number; } /** * Tooltip element utilizes tippy's shift away https://github.com/atomiks/tippyjs/blob/master/src/scss/animations/shift-away.scss. * In order for this to work, the div container must start with opacity 0. Furthermore, the transition group state css is * controled by global.css */ export declare const Tooltip: React.FC;