export declare class BitField { map: Record; bits: bigint; constructor(map: Record, bits: number | bigint | number[] | bigint[] | string); resolve(value: string): bigint; has(value: string): boolean; toArray(): string[]; add(value: string | number | bigint): void; }