/** * Wraps a bytearray, i.e. Uint8Array. Used to give distinct types to objects as most of them are bytearrays because that * is what the WASM bindings accept and return. */ export declare class BytearrayWrapper { value: Uint8Array; constructor(value: Uint8Array); static fromBytes(bytes: Uint8Array): BytearrayWrapper; /** * Return the wrapped bytearray */ get bytes(): Uint8Array; /** * Return the length of the wrapped bytearray */ get length(): number; /** * Return the hex representation of the wrapped bytearray */ get hex(): string; static fromHex(hex: string): BytearrayWrapper; } //# sourceMappingURL=bytearray-wrapper.d.ts.map