import type { PropsFor } from "../../types.js"; export type PopoverProps = PropsFor<"div", { /** Display the popover */ open: boolean; }>; declare const Popover: import("react").ForwardRefExoticComponent>; export default Popover;