/** * Returns the difference between 2 sets */ declare const diff: (a: Set, b: Set) => Set; export default diff;