/**
 * Get the difference between two sets. The difference is the elements that are in the original set but not in the compare set.
 * @param orignalSet
 * @param compareSet
 */
export declare function getSetDifference<T>(orignalSet: Set<T>, compareSet: Set<T>): Set<T>;
//# sourceMappingURL=get-set-difference.d.ts.map