import { CLType, CLValue, ResultAndRemainder, ToBytesResult, CLErrorCodes, CLValueBytesParsers } from './index'; import { CLTypeTag } from './constants'; export declare class CLStringType extends CLType { linksTo: string; tag: CLTypeTag; } export declare class CLStringBytesParser extends CLValueBytesParsers { toBytes(value: CLString): ToBytesResult; fromBytesWithRemainder(rawBytes: Uint8Array): ResultAndRemainder; } export declare class CLString extends CLValue { data: string; constructor(v: string); clType(): CLType; value(): string; size(): number; }