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