export declare const setGlobalState: (key: string, val: any, dontEmit?: boolean) => void; export declare const getGlobalState: (key: string) => any; declare const useGlobalState: (key: string, defaultValue?: any) => any[]; export default useGlobalState;