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