import { RefObject } from 'react'; import { MaterialContext } from '../locators'; export declare const MaterialContextRefContext: import("react").Context>; /** * Returns the MaterialContext from a stable ref. Does NOT subscribe to Redux state, * so reading this does not trigger re-renders when game state changes. * * Must be used inside a MaterialContextRefContext.Provider (provided by DynamicItemsTypeDisplay or StaticItemsTypeDisplay). */ export declare function useMaterialContextRef

(): MaterialContext;