import * as React from 'react'; /** * Wrapper around `PopupContents`. Prevents the creation of an unnecessary * wrapping `div` with `role="option" tabIndex="0"`. Allows the user to tab out * to exit the popup. */ declare const FragmentWrapper: React.ForwardRefExoticComponent<{ children: React.ReactNode; } & React.RefAttributes>; export default FragmentWrapper;