import { GetGlobalState, SetGlobalState } from "@lincode/reactivity";
type UseGlobalState<T> = () => readonly [T, SetGlobalState<T>];
declare const _default: <T>(setGlobalState: SetGlobalState<T>, getGlobalState: GetGlobalState<T>) => UseGlobalState<T>;
export default _default;
