import * as React from 'react'; import { ITooltip } from './ITooltip'; import { TOOLTIP_SIZE } from './TOOLTIP_SIZE'; import { TOOLTIP_POSITION } from './TOOLTIP_POSITION'; import { TOOLTIP_ALIGN } from './TOOLTIP_ALIGN'; export declare class Tooltip extends React.Component { static defaultProps: { size: TOOLTIP_SIZE; position: TOOLTIP_POSITION; align: TOOLTIP_ALIGN; }; private node; componentDidMount(): void; componentWillUnmount(): void; render(): JSX.Element; private getRef; private onOutsideClick; }