import { default as React } from 'react'; import { FlexProps } from '../flex'; import * as PopoverPrimitive from '@radix-ui/react-popover'; export type ContentProps = React.ComponentPropsWithoutRef & FlexProps & { /** Position the content relative to the trigger. */ side?: PopoverPrimitive.PopoverContentProps['side']; /** Offset the content relative to the trigger. */ sideOffset?: PopoverPrimitive.PopoverContentProps['sideOffset']; /** Position the beak relative to the content. */ beakPosition?: PopoverPrimitive.PopoverContentProps['align']; /** Offset the beak relative to the content. */ beakOffset?: PopoverPrimitive.PopoverContentProps['alignOffset']; }; /** The component that pops out when the popover is open. */ export declare const Content: React.ForwardRefExoticComponent>;