import * as React from "react"; import { Popover as PopoverPrimitive } from "@base-ui/react/popover"; export type PopoverRootProps = PopoverPrimitive.Root.Props; export type PopoverTriggerProps = PopoverPrimitive.Trigger.Props; export type PopoverContentProps = PopoverPrimitive.Popup.Props & Pick; export type PopoverHeaderProps = React.ComponentProps<"div">; export type PopoverTitleProps = PopoverPrimitive.Title.Props; export type PopoverDescriptionProps = PopoverPrimitive.Description.Props; declare function Popover({ ...props }: PopoverPrimitive.Root.Props): React.JSX.Element; declare function PopoverTrigger({ ...props }: PopoverTriggerProps): React.JSX.Element; declare function PopoverContent({ className, align, alignOffset, collisionPadding, side, sideOffset, ...props }: PopoverContentProps): React.JSX.Element; declare function PopoverHeader({ className, ...props }: PopoverHeaderProps): React.JSX.Element; declare function PopoverTitle({ className, ...props }: PopoverTitleProps): React.JSX.Element; declare function PopoverDescription({ className, ...props }: PopoverDescriptionProps): React.JSX.Element; export { Popover, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger, };