import { Signal } from 'solid-js'; import { MaybeAccessor } from '@solidjs-use/shared'; /** * Lock scrolling of the element. * * @see https://solidjs-use.github.io/solidjs-use/core/useScrollLock */ declare function useScrollLock(element: MaybeAccessor, initialState?: boolean): Signal; export { useScrollLock };