/** * Hook to disable body scrolling when a modal or overlay is open * @param isScrollDisabled - Boolean to determine if body scrolling should be disabled */ declare const useScrollDisable: (isScrollDisabled: boolean) => void; export default useScrollDisable;