import { PopupCloseProps } from './popup-close.types'; /** * The `PopupClose` component is used to close the pop-up interface. * It typically contains a button or other interactive element that, when clicked, triggers the closing of the pop-up. * * ### Usage * * ```tsx * import { Popup, PopupTrigger, PopupContent PopupClose } from '@bloomreach/react-banana-ui'; * * export default function MyCustomComponent() { * return ( * * Trigger * Content * Close * * ); * } * ``` */ declare const PopupClose: import('react').ForwardRefExoticComponent>; export default PopupClose;