import { type Ref } from 'vue'; /** * 禁止页面滚动 * * el 的 useLockscreen 在快速切换时会使页面始终保持禁止滚动状态, * 因此编写此 hook 用于代替。 * * 添加 hiddenCls 是为了让顶部导航能够监听到页面被禁止滚动。 */ export declare function useLockScroll(trigger: Ref): void;