export { TypedBytes$1 as default }; declare var TypedBytes$1: typeof TypedBytes; declare class TypedBytes { static fromApi(value: any): TypedBytes; static random(size: number): TypedBytes; static fromJSON(json: string): TypedBytes; static from(obj: any): TypedBytes; constructor(bytes: Uint8Array | Array | string); get value(): string; get bytes(): Uint8Array; set(maybeBytes: (Uint8Array | Array | string)): void; length: number | undefined; toHex(): string; toJSON(): string; apply(fn: Function): any; eq(other: TypedBytes | string): boolean; toString(): string; toLocaleString(): string; }