import { useEffect } from 'react'; /** * useUpdateEffect hook * * Run an effect only on updates. * Skip the first effect execution that occurrs after initial mount. */ declare const useUpdateEffect: typeof useEffect; export default useUpdateEffect;