// Generated by dts-bundle v0.7.3 // Dependencies for this module: // ../../../react import * as React from 'react'; export interface IAToolTipProps { content: string; type: "popup" | "bubble" | "followMouse"; styles?: React.CSSProperties; color?: string; backgroundColor?: string; rootStyles?: React.CSSProperties; componentContent?: JSX.Element; showBelow?: boolean; darkMode?: boolean; borderRadius?: number; popupMaxHeight?: number; disabled?: boolean; disableScroll?: boolean; onDismiss?: () => void; } export interface IAToolTipState { isVisible: boolean; hasFocus: boolean; top: number; left: number; showToolTipPopup: boolean; } export class IATooltip extends React.Component { constructor(props: IAToolTipProps, state: IAToolTipState); componentWillReceiveProps(props: IAToolTipProps): void; render(): JSX.Element; }