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