import { Props } from '@headlessui/react/dist/types' import { MouseEventHandler, MutableRefObject } from 'react' export type MouseEvent = Parameters>[0] export type PopoverProps = Props< 'div', { open: boolean close( focusableElement?: | HTMLElement | MutableRefObject | MouseEvent, ): void } >