import type { PopoverProps } from "antd/es/popover"; import React from "react"; import "./index.less"; export interface Props extends PopoverProps { childContainerProps?: React.HTMLAttributes; } export declare const Popover: (props: Props) => React.JSX.Element;