/** src: https://www.benmvp.com/blog/8-helpful-custom-react-hooks/
* delay State update till next animation frame. Similar to debounce but shorter */exportdeclareconstuseRafState: <S>(initialState: S | (() => S)) =>readonly [S, (value: S | ((prevState: S) => S)) =>void];