import * as React from 'react'; interface PropTypes { text?: string; isDisabled?: boolean; align: 'top' | 'bottom' | 'left' | 'right'; children: React.ReactNode; } declare function ToolTip({ text, align, isDisabled, children }: PropTypes): JSX.Element; declare namespace ToolTip { var defaultProps: { text: string; isDisabled: boolean; }; } export default ToolTip;