import { PopoverProps } from 'antd'; import React from 'react'; import './index.less'; interface PopoverExtraProps { showCloseButton?: boolean; } declare const Popover: (props: PopoverProps & PopoverExtraProps) => React.JSX.Element; export { Popover };