/// /** * A hook that runs an effect only on updates, not on initial mount. * * Example: * useUpdateEffect(() => { * // Effect logic here * }, [value]); */ export declare function useUpdateEffect(effect: React.EffectCallback, deps: React.DependencyList): void;