import { SCALEDecodeResult } from '../SCALEDecoder'; import { SCALEEncodeConfig, SCALEType } from './SCALEType'; export declare class SCALEString extends SCALEType { readonly value: string; static from(value: string): SCALEString; static decode(hex: string): SCALEDecodeResult; private constructor(); toCamelCase(options?: { startUpper: boolean; }): string; toString(): string; protected _encode(config?: SCALEEncodeConfig): string; }