declare global { interface Set { union?(other: Set): Set; difference?(other: Set): Set; } } export declare function union(setA: Set, setB: Set): Set; export declare function difference(setA: Set, setB: Set): Set;