import { PopupTriggerProps } from './popup-trigger.types';
/**
* The `PopupTrigger` component is used to trigger the opening and closing of the pop-up.
* Requires a child element to be used as trigger. It typically contains a button or other interactive element that,
* when clicked, toggles the visibility of the pop-up.
*
* ### Usage
* Place the `PopupTrigger` component inside the `Popup` component to define the trigger of the popup.
*
* ```tsx
* import { Popup, PopupTrigger, PopupContent } from '@bloomreach/react-banana-ui';
*
* export default function MyCustomComponent() {
* return (
*
* Trigger
* Content
*
* );
* }
* ```
*/
declare const PopupTrigger: import('react').ForwardRefExoticComponent>;
export default PopupTrigger;