export declare function union<T>(...sets: Set<T>[]): Set<T>;
export declare function intersection<T>(...sets: Set<T>[]): Set<T>;
export declare function difference<T>(...sets: Set<T>[]): Set<T>;
export declare function areEqualSets<T>(x: Set<T>, y: Set<T>): boolean;
//# sourceMappingURL=set-operations.d.ts.map