export interface LightSet { [Symbol.toStringTag]: string; has(value: T): boolean; add(value: T): this; values(): Iterable; delete(value: T): boolean; }