/** A subset of {0, 1, ..., 59}. */ export declare class Bitset { private static readonly max; /** This is a (max + 1)-bit integer. */ readonly data: bigint; constructor(data: bigint); static from(set: Iterable): Bitset; entries(): Generator; count(): number; equals(other: Bitset): boolean; } //# sourceMappingURL=bitset.d.ts.map