/** * JavaScript port from java.util.TreeSet. */ export declare class TreeSet { array: T[]; properties: { [key: string | number]: boolean; }; comparator: { compare: (a: T, b: T) => number; }; constructor(); add(value: T): void; size(): number; contains(value: T): boolean; last(): T; } //# sourceMappingURL=TreeSet.d.ts.map