interface GlobalState {
    runLevel: number;
    actions: {
        setRunLevel: (n: number) => void;
        increaseRunLevel: () => void;
    };
}
export declare const useGlobalStore: import("zustand").UseBoundStore<import("zustand").StoreApi<GlobalState>>;
export declare const useGlobalStoreActions: () => {
    setRunLevel: (n: number) => void;
    increaseRunLevel: () => void;
};
export declare const useRunLevel: () => number;
export {};
//# sourceMappingURL=globalStore.d.ts.map