export declare class Bytes { private readonly bytes; private constructor(); static fromBase64String(base64: string): Bytes; static fromUint8Array(array: Uint8Array): Bytes; toBase64(): string; toUint8Array(): Uint8Array; isEqual(other: Bytes): boolean; } //# sourceMappingURL=bytes.d.ts.map