export declare class SetUtils { static union(set0: Set, set1: Set): Set; static intersection(set0: Set, set1: Set): Set; static difference(set0: Set, set1: Set): Set; }