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<HTMLHeroUIProps, "children" | "role"> {
    children?: ReactNode | ((titleProps: DOMAttributes<HTMLElement>) => ReactNode);
}
declare const PopoverContent: {
    (props: PopoverContentProps): react_jsx_runtime.JSX.Element;
    displayName: string;
};

export { type PopoverContentProps, PopoverContent as default };
