import React from 'react'; import type { GlobalAttributesT, XstyledProps } from '@elliemae/ds-legacy-props-helpers'; export interface PopoverContentPropsT { setPopperElement: React.Dispatch>; popperStyles: React.CSSProperties; arrowStyle: React.CSSProperties; popperAttributes: Record | undefined; children: ReactChildrenComplete; setArrowElement: React.Dispatch>; withoutArrow: boolean; withoutAnimation: boolean; animationDuration: number; zIndex: number; showPopover: boolean; setIsAnimating: React.Dispatch>; globalAttrs: GlobalAttributesT; xStyledAttrs: XstyledProps; } export declare const PopoverContent: ({ setPopperElement, popperStyles, popperAttributes, children, showPopover, setArrowElement, setIsAnimating, arrowStyle, withoutArrow, withoutAnimation, animationDuration, zIndex, globalAttrs, xStyledAttrs, }: PopoverContentPropsT) => JSX.Element;