/**
 *
 * Shallow object comparison to easily find out what props of an object was changed since the last render
 */
export default function useWasChanged<Subject extends object>(subject: Subject, title?: string, debug?: boolean): void;
