import PropTypes from 'prop-types'; export interface PopoverProps { header: any; isOpen: boolean; children: any; content: any; className?: string; onClose: () => void; contentStyles?: any; [props: string]: any; } export declare const Popover: { ({ header, isOpen, children, content, className, onClose, contentStyles, ...props }: PopoverProps): import("@emotion/react/jsx-runtime").JSX.Element; propTypes: { header: PropTypes.Validator; isOpen: PropTypes.Validator; children: PropTypes.Validator; content: PropTypes.Validator; className: PropTypes.Requireable; }; };