Svelte is a good example. But you don't have to go that far; Solid and Preact have signals with auto-tracked dependencies.
As another commenter mentioned, yes it's less low level than managing your own dependencies, but then again, most React apps are already wrapped in layers and layers of abstractions/context providers/selectors and use Jest as their test runner (which injects the global namespace with functions) and does other black magic and weird metaprogramming, so I think most React devs are already OK with less lower level stuff.
Hm, could you give an example of this ideal performant state management world? Angular? Vue? Svelte? MobX?