import { ComponentPropsType } from '../connect/types'; /** * Returns a copy of the next props whose values shallowly differ from the previous ones * @param {object} props - the props you want to mutate * @returns {object} - the props whose values are shallowly differnt from the previous */ declare const usePropsThatChanged:
(nextProps?: Partial
| undefined) => Partial
; export default usePropsThatChanged;