export declare class MySet { private readonly collection; constructor(); has(el: any): boolean; values(): any[]; add(el: any): boolean; size(): number; remove(el: any): boolean; union(otherSet: MySet): Set; intersection(otherSet: MySet): Set; difference(otherSet: MySet): Set; subset(otherSet: MySet): boolean; }