///
import { Scrollbar } from 'smooth-scrollbar/scrollbar';
interface State {
container: HTMLElement | HTMLDivElement | undefined;
smoothScrollBar: Scrollbar | undefined;
allowScroll: boolean;
}
export declare const useGlobalState: (stateKey: StateKey) => readonly [State[StateKey], (u: import("react").SetStateAction) => void];
export {};