/** * Closes the right-click floating menu once the user scrolls far enough. The menu is * portaled to the body at fixed coordinates, so it does not follow the table on scroll — * it is dismissed instead of being left floating detached from its anchor. * * When `stickyVertically` is true (header menus), vertical scroll of the table container * is ignored because the header is sticky and its position doesn't change vertically. * Page-level wheel/touch events and horizontal container scroll still close the menu. */ export declare function useCloseFloatingMenuOnScroll(props: { isMenuOpen: boolean; closeMenu: () => void; stickyVertically?: boolean; }): void; //# sourceMappingURL=useCloseFloatingMenuOnScroll.d.ts.map