import * as React from 'react'; import HIDComponentProps from '../ComponentModel/HIDComponentModel'; export interface HIDTooltipProps extends HIDComponentProps { /**Tooltip title */ title: string; /** JSX Component */ children: any; } /** * ### The API documentation of the HID Tooltip React component. Learn more about the properties and the API Methods. * */ export default class HIDTooltip extends React.Component { render(): JSX.Element; }