import { Ref, FunctionComponent, ReactNode } from 'react'; interface PopoverProps { children: ReactNode; className?: string; forwardRef?: Ref; isVisible: boolean; title?: ReactNode; xOffset?: string; yOffset?: string; } declare const Popover: FunctionComponent; export default Popover;