import { type EffectCallback, type DependencyList } from 'react'; /** * `React.useEffect` that will not run on the first render. * * @param effect the effect to execute * @param deps the dependency list */ declare const useUpdateEffect: (effect: EffectCallback, deps?: DependencyList) => void; export default useUpdateEffect;