declare const useCallbackState: (initialValue: S) => [S, (newValue: S | ((prevState: S) => S)) => void]; export default useCallbackState;