/** * @function jsonStringComparison * @param {unknown} a - The first object to compare. * @param {unknown} b - The second object to compare. * @returns {boolean} - Returns true if the JSON strings are identical. * @description - Compares two objects by converting them to JSON strings. * This is a JSON comparison and should only be used for simple objects. * Meaning no class instances can take part in this data. */ export declare function jsonStringComparison(a: unknown, b: unknown): boolean;