/** * Configurable tooltip component * Now implemented as a layer for the component * https://github.com/react-component/tooltip * * @author Sergey Shishigin * @date 2019-07-17 */ import * as React from 'react'; import { PLACEMENT, POPOVER_BOUNDARIES, POPOVER_THEME, TRIGGER } from '../../constants'; import { IProps as PopoverProps } from '../popover/Popover.types'; declare type IProps = Omit & { overlay: React.ReactNode; mouseLeaveDelay: number; mouseEnterDelay: number; children: React.ReactElement; }; export declare class Tooltip extends React.PureComponent { static defaultProps: { placement: PLACEMENT; trigger: TRIGGER; mouseLeaveDelay: number; mouseEnterDelay: number; boundaries: POPOVER_BOUNDARIES; theme: POPOVER_THEME; }; render(): JSX.Element; } export {};