export declare abstract class Sets { /** * Return the intersection of N sets */ static intersection(...xss: Array>): Set; /** * Return the union of N sets */ static union(...xss: Array>): Set; /** * Return the diff of 2 sets */ static diff(xs: Set, ys: Set): Set; static intersect(xs: Set, ys: Set): Generator; } //# sourceMappingURL=sets.d.ts.map