export declare const useWhyDidYouUpdate: typeof _useWhyDidYouUpdate; /** * Logs in console the diff in props between renders. * For debugging use only. Remove before production. * * https://usehooks.com/useWhyDidYouUpdate/ * * Example usage: * ```jsx * const ComponentName = ReactUtil.memo("ComponentName", (props: Props) => { * const stateFromStore = useSelector(state => state.app.moduleName.stateFromStore); * useWhyDidYouUpdate("ComponentName", {...props, stateFromStore}); * return
{props.count}
; * }); * ``` * * @param name A tag for identifying the function component using this hook * @param props Props of the function component */ declare function _useWhyDidYouUpdate

(name: string, props: P): void; export {};