/** * Returns a new set representing the union of a and b. */ export declare function union(a: Set, b: Iterable): Set; /** * Adds all items from the set b to a. */ export declare function addAll(target: Set, source: Iterable): void; /** * Returns whether two sets are equal */ export declare function equal(a: Set, b: Set): boolean;