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