/** * Calculates the set difference (self \ other), returning elements present in `self` but not in `other`. * * @returns {Set} A new Set containing elements present in `self` but not in `other` */ export declare function Difference(self: Set, other: Set): Set; /** * Calculates the set intersection (self ∩ other), returning elements common to both sets. * * @returns {Set} A new Set containing elements present in both `self` and `other` */ export declare function Intersection(self: Set, other: Set): Set;