/// import { PopoverContentProps, PopoverProps as UiPopoverProps } from '@radix-ui/react-popover'; export interface PopoverProps extends UiPopoverProps, Omit { content?: React.ReactNode; } export declare function Popover(props: PopoverProps): import("react/jsx-runtime").JSX.Element;