/**
 * Debug hook showing which props updated between two renders
 * @example
 *
 * const MyComponent = React.memo(props => {
 *   useWhyDidYouUpdate('MyComponent', props);
 *   return <div...;
 * });
 *
 * @link https://usehooks.com/useWhyDidYouUpdate/
 */
export default function useWhyDidYouUpdate(name: any, props: any): void;
//# sourceMappingURL=useWhyDidYouUpdate.d.ts.map