import { Dispatch, SetStateAction } from 'react'; type UsePreventBodyScrollReturn = { isScrollLocked: boolean; setIsScrollLocked: Dispatch>; lock: VoidFunction; unlock: VoidFunction; toggleScrollLock: VoidFunction; }; export declare function usePreventBodyScroll(initialState?: boolean): UsePreventBodyScrollReturn; export type { UsePreventBodyScrollReturn };