/**
* Returns common elements between two sets
* @templateT
* @returns Set<T>
* @param {Set<T>} a
* @param {Set<T>} b
*/exportfunction compute_set_intersection<T>(a: Set<T>, b: Set<T>): Set<any>;
//# sourceMappingURL=compute_set_intersection.d.ts.map