/** * Returns the intersection between the two input sets */ declare const intersect: (a: Set, b: Set) => Set; export default intersect;