import type { GlobalModel } from '../context/types'; import type { CallableValue } from '../types'; /** * Hook for global model state management. * @param key - global model key * @returns [model, updateModel] * @public */ export declare const useGlobalModel: (key?: K) => readonly [any, (newModel: CallableValue) => void];