/// import { SCALEDecodeResult } from '../SCALEDecoder'; import { SCALEEncodeConfig, SCALEType } from './SCALEType'; export declare class SCALEBytes extends SCALEType { readonly bytes: Buffer; static from(bytes: string | Buffer | Uint8Array): SCALEBytes; static decode(hex: string): SCALEDecodeResult; private constructor(); toString(encoding?: BufferEncoding): string; protected _encode(config?: SCALEEncodeConfig): string; }