/** * Converts the existing iterable into a promise which resolves a Set. * * @export * @template TSource The type of elements in the source sequence. * @param {Iterable} source The iterable to convert into a set. * @returns {Set} A promise which contains a Set with all the elements from the iterable. */ export declare function toSet(source: Iterable): Set;