import { PopoverPortalProps } from '../../common/components/popover/PopoverPortal'; export type PopupProps = Omit; /** * The `` component is used to display additional information or actions related to a specific element.
* It is used in combination with the `usePopup` hook. */ declare const Popup: { ({ children, ...rest }: PopupProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default Popup;