import { Dispatch, SetStateAction } from 'react'; export declare const makeGlobalStateId: (id: string) => string; export declare const useGlobalState: (id: string, defaultState?: T, persistence?: boolean) => [T, Dispatch>];