/** A class for representing a bitfield */ export declare class BitField { /** The bitfield */ readonly bitfield: bigint; constructor(bitfield: bigint); /** Does the bitfield have this field? */ has(bit: bigint): boolean; /** Only return the string of the bitfield */ toString(): string; /** Only return the string of the bitfield */ toJSON(): string; } export default BitField;