/**
 * deep comparison of javascript types. Better handling than using
 * JSON.stringify, where property order is accounted for
 *
 * @returns true, if data types are deep equal
 */
export default function deepCompareStrict(a: any, b: any): boolean;
