/** * Compares two values by converting them to json * and then comparing the two json strings. * @param x left value * @param y right value * @returns Whether or not the two values produce equal JSON */ export declare const StringifyComparer: (x: T, y: T) => boolean;