/** * This is the recommended way of saving previous props. Ref https://reactjs.org/docs/hooks-faq.html#how-to-get-the-previous-props-or-state * @param {*} value previous props */ declare const usePrevious: (value: T) => T | null; export default usePrevious; //# sourceMappingURL=usePrevious.d.ts.map