import React from "react"; import type { BasePopoverProps } from "../Toggletip/BasePopover"; import type { TooltipConditionalProps } from "../Tooltip/types"; export type PopoverProps = Omit & TooltipConditionalProps; export declare function Popover({ renderAsSheetOnMobile, defaultVerticalPlacement, ...rest }: PopoverProps): React.ReactElement;