/**
* Given two sets, return true if they contain the same elements.
* @param {T} a - The first set.
* @param {U} b - U is the type of the second set.
* @returns The result of the equality check.
*/exportdeclarefunction equalSet<T extendsSet<unknown>, U extends T>(a: T, b: U): boolean;