/*! * Copyright (c) Microsoft Corporation. * Licensed under the MIT License. */ export declare class SetHelper { static new(a: Set, b: Iterable): void; static union(a: Set, b: Iterable): void; static intersection(a: Set, b: Iterable): void; static symmetricDifference(a: Set, b: Iterable): void; static difference(a: Set, b: Iterable): void; }