import { Primitives } from './common.js'; export declare const ID_LEN = 32; export declare class Id extends Primitives { private readonly idVal; constructor(idVal: Uint8Array); static fromBytes(buf: Uint8Array): [Id, Uint8Array]; toBytes(): Uint8Array; toJSON(): string; toString(): string; static fromString(str: string): Id; static fromHex(hex: string): Id; value(): string; } //# sourceMappingURL=id.d.ts.map