import React from "react"; import { Popover as PopoverPrimitive } from "radix-ui"; type PopoverRootProps = PopoverPrimitive.PopoverProps; declare const PopoverRoot: ({ ...props }: PopoverRootProps) => React.JSX.Element; export { PopoverRoot, type PopoverRootProps };