/**
 * Remove all elements of B from A.
 * This operation mutates A
 * @template T
 * @param {Set<T>} from
 * @param {Set<T>} to_be_removed
 */
export function set_remove<T>(from: Set<T>, to_be_removed: Set<T>): void;
//# sourceMappingURL=set_remove.d.ts.map