import * as react_jsx_runtime from 'react/jsx-runtime'; import { AriaDialogProps } from '@react-aria/dialog'; import { ReactNode, DOMAttributes } from 'react'; import { HTMLHeroUIProps } from '@heroui/system'; interface PopoverContentProps extends AriaDialogProps, Omit { children?: ReactNode | ((titleProps: DOMAttributes) => ReactNode); } declare const PopoverContent: { (props: PopoverContentProps): react_jsx_runtime.JSX.Element; displayName: string; }; export { type PopoverContentProps, PopoverContent as default };