import { FC } from 'react'; import { TooltipTriggerProps } from 'react-popper-tooltip/dist/types'; export interface PopoverOwnProps { /** * set to false to hide the arrow */ arrowVisible?: boolean; } export declare type PopoverProps = PopoverOwnProps & Omit, 'children'>; /** * Popover container that is triggered by a click/hover event, using [react-popper-tooltip](https://github.com/mohsinulhaq/react-popper-tooltip). */ export declare const Popover: FC;