/** * Accepts a function that contains imperative, possibly effectful code. (skips initial trigger) * @param effect Imperative function that can return a cleanup function * @param deps If present, effect will only activate if the values in the list change. */ export declare function useDidUpdateEffect(effect: any, deps: any): void;