export interface UnorderedSetOptions { id?: Uint8Array | string; initialValues?: T[]; } export declare class UnorderedSet { private readonly setId; constructor(options?: UnorderedSetOptions); id(): string; idBytes(): Uint8Array; add(value: T): boolean; has(value: T): boolean; delete(value: T): boolean; clear(): void; size(): number; toArray(): T[]; toJSON(): Record; } //# sourceMappingURL=UnorderedSet.d.ts.map