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

export { PopoverContentProps, PopoverContent as default };
