/** * Custom hook to track if a value was modified at any point, * even if it returns to its initial state. */ export declare const useWasModified: (value: T, initialValue: T) => boolean;