import React from 'react'; import './Popover.css'; interface PopoverProps { isOpen: boolean; onClose: () => void; anchorRef: React.RefObject; children: React.ReactNode; popoverWidth?: number; boundaryRef?: React.RefObject; offset?: number; hasHeader?: boolean; header?: React.ReactNode; headerTitle?: string; headerBackground?: string; isDismissable?: boolean; onDismiss?: () => void; isStickyHeader?: boolean; hasFooter?: boolean; footer?: React.ReactNode; cta1?: () => void; cta2?: () => void; footerLabels?: string[]; isStickyFooter?: boolean; dismissOnClickOutside?: boolean; dismissOnEscapeKey?: boolean; ariaLabelledBy?: string; ariaDescribedBy?: string; ariaDescription?: string; testId?: string; } declare const Popover: React.FC; export default Popover;