/** * Performs a deep (recursive) comparison between the two arguments. * This function requires that the two values have the same prototype * and properies, including unenumerable ones. Otherwise it returns * false. * https://github.com/NickGard/tiny-isequal */ declare const isEqual: (a: unknown, b: unknown) => boolean; export { isEqual };