persona-community-5/.pnpm-store/v3/files/9d/a84f25168faafbcaabbac9fb2f9f1140bbc3df6a5574cf0c6002bcb574e524c81a6080e98cd85ef13f5edaa21b7a840594b0031c34fbf0a1cf766cb9bff98c
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

14 lines
415 B
Plaintext

import * as React from 'react';
import { GapMode } from './utils';
export interface BodyScroll {
noRelative?: boolean;
noImportant?: boolean;
gapMode?: GapMode;
}
export declare const lockAttribute = "data-scroll-locked";
export declare const useLockAttribute: () => void;
/**
* Removes page scrollbar and blocks page scroll when mounted
*/
export declare const RemoveScrollBar: React.FC<BodyScroll>;