import { PopupContentProps } from './popup-content.types'; /** * The `PopupContent` component is used to define the content that will be displayed inside the pop-up when it is open. * This could be any valid JSX, including text, forms, images, or other components. * * ### Usage * Place the `PopupContent` component inside the `Popup` component to define the content of the popup. * * ```tsx * import { Popup, PopupTrigger, PopupContent } from '@bloomreach/react-banana-ui'; * * export default function MyCustomComponent() { * return ( * * Trigger * Content * * ); * } * ``` */ declare const PopupContent: import('react').ForwardRefExoticComponent>; export default PopupContent;