/** * Always-current ref: lets stable callbacks and one-shot effects read the * latest value without re-subscribing on every change. */ declare const useLatest: (value: T) => import("react").RefObject; export default useLatest;