/** * Accepts a variable (possibly a prop or a state) and returns its history (changes through updates). */ declare const useValueHistory: (value: TValue, distinct?: boolean) => TValue[]; export default useValueHistory;