/** * Returns the intersection of the given sets. If one of the sets is * `undefined`, the other set is returned. If both sets are `undefined`, * returns `undefined`. */ export declare function intersect(set1: Set | undefined, set2: Set | undefined): Set | undefined;