import React from "react"; import { HoverPopoverProps } from "../hover-popover"; interface Props extends Pick { children: React.ReactNode | JSX.Element; content: React.ReactNode | JSX.Element; } declare const Tooltip: ({ content, children, ...restProps }: Props) => React.JSX.Element; export default Tooltip;