interface Cell { count: number; idSum: bigint; hashSum: bigint; } declare class InverseBloomFilter { private size; private cells; private items; constructor(items: string[], expectedDiffSize?: number); private hashToIndex; private hashToId; private addItem; toBytes(): Uint8Array; private subtractFilter; findMaybeMissing(otherFilterBytes: Uint8Array): string[]; }