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