import * as React from 'react'; import { Placement } from '@popperjs/core'; export declare type TPopoverTheme = 'light' | 'dark'; export interface IPopoverProps { prefixCls?: string; className?: string; wrapperClassName?: string; contentClassName?: string; arrowClassName?: string; overlayClassName?: string; onClose?: () => void; overlayCloseable?: boolean; onOverlayClick?: React.MouseEventHandler; transitionName?: string; duration?: number; visible: boolean; placement?: Placement; theme?: TPopoverTheme; overlay?: boolean; offset?: Array; content?: React.ReactNode; }