import React from 'react'; import { PopoverProps as AsPopoverProps } from 'antd/lib/popover'; export interface PopoverProps extends AsPopoverProps { children: React.ReactNode; } declare const Popover: React.FC; export default Popover;