/// export type PopoverProps = { trigger: any; contentAlignment?: "start" | "center" | "end" | undefined; arrowClassName: string; contentClassName: string; content: any | any[]; closeButtonClassName: string; closeButtonColor?: string; }; declare const Popover: ({ trigger, contentAlignment, arrowClassName, contentClassName, content, closeButtonClassName, closeButtonColor, }: PopoverProps) => JSX.Element; export default Popover;