export interface LwwRegisterOptions { id?: Uint8Array | string; initialValue?: T | null; } export declare class LwwRegister { private readonly registerId; constructor(options?: LwwRegisterOptions); id(): string; idBytes(): Uint8Array; set(value: T): void; clear(): void; get(): T | null; timestamp(): number | null; toJSON(): Record; } //# sourceMappingURL=LwwRegister.d.ts.map