import { Positions } from '../../styles'; import * as React from 'react'; interface Props { children: React.ReactNode; content: React.ReactNode; id: string; align: Positions; showOn: 'hover' | 'click' | 'props'; show?: boolean; ref?: any; style?: React.CSSProperties; } declare const Tooltip: { (props: Props): JSX.Element; defaultProps: { align: string; showOn: string; }; }; export default Tooltip;