import { RefObject } from 'react'; type PopperContextValue = { setOpen: (open: boolean) => void; open: boolean; referenceRef: RefObject; popperRootRef: RefObject; handleOpen: () => void; handleClose: () => void; }; declare const usePopper: () => PopperContextValue; export { usePopper }; export type { PopperContextValue };