/// import * as PopoverPrimitive from "@radix-ui/react-popover"; export declare const PopoverTrigger: import("react").ForwardRefExoticComponent>; export declare const PopoverClose: import("react").ForwardRefExoticComponent>; export type PopoverContentProps = { className?: string; children?: React.ReactNode; } & PopoverPrimitive.PopoverContentProps; export declare const PopoverContent: import("react").ForwardRefExoticComponent<{ className?: string | undefined; children?: React.ReactNode; } & PopoverPrimitive.PopoverContentProps & import("react").RefAttributes>; export type PopoverProps = { children?: string | React.ReactNode; trigger?: React.ReactNode; className?: string; contentProps?: PopoverPrimitive.PopoverContentProps; } & PopoverPrimitive.PopoverProps; /** Displays rich content in a portal, triggered by a button. * Built using Radix Popover, styled for Stellar. Refer to the Radix docs for complete documentation of available properties aside from the ones * added by this wrapper component. * * Figma Design TODO, * [Radix Docs](https://www.radix-ui.com/docs/primitives/components/popover) */ export declare const Popover: (props: PopoverProps) => import("react/jsx-runtime").JSX.Element;