import { TooltipProps } from 'react-tooltip-lite'; interface ITooltipProps extends TooltipProps { children: any; getRef?: (node: any) => any; } declare const TOOLTIP_CLS = "syl-tooltip"; declare const Tooltip: ({ children, content, getRef, tipContentClassName, ...rest }: ITooltipProps) => JSX.Element; export { ITooltipProps, Tooltip, TOOLTIP_CLS };