import { GlobalContext } from "./types.cjs"; //#region src/GlobalContext/useGlobalContext.d.ts /** * Internal hook that returns the full reactive global context object. * * Public components should use `getContext` or `setContext` instead. This hook * is kept for package internals that need direct access to the provider object. * * @returns The active Pastweb global context. * @internal */ declare function useGlobalContext(): GlobalContext; //#endregion export { useGlobalContext }; //# sourceMappingURL=useGlobalContext.d.cts.map