import { DependencyList, EffectCallback } from 'react'; /** * A hook alike useEffect but skips running the effect for the first time. * Useful when you only want to respond to dependency changes, not initial mount. * * @param effect - The effect callback to run on updates * @param deps - The dependency array */ export declare function useUpdateEffect(effect: EffectCallback, deps?: DependencyList): void;