/** * Returns a `boolean` indicating whether the given `value` has changed since * the previous update. * * @param value - The value to compare against the previous render. */ export declare function useCompare(value: T): boolean;