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