import * as React from "react"; export interface PopoverProps { children?: React.ReactNode; placement?: "top" | "topleft" | "topright"; title?: string; onOpenChange?: (visible: boolean) => void; align?: "left" | "right" | "top" | "bottom"; } declare const Popover: ({ children, placement, title, align, onOpenChange, ...rest }: PopoverProps) => import("react/jsx-runtime").JSX.Element; export default Popover;