import { CLValue, CLValueBytesParsers, CLType, CLErrorCodes, ResultAndRemainder, ToBytesResult, CLByteArrayType } from './index'; export declare class CLAccountHashType extends CLByteArrayType { linksTo: string; constructor(); } export declare class CLAccountHashBytesParser extends CLValueBytesParsers { toBytes(value: CLAccountHash): ToBytesResult; fromBytesWithRemainder(bytes: Uint8Array): ResultAndRemainder; } /** A cryptographic public key. */ export declare class CLAccountHash extends CLValue { data: Uint8Array; /** * Constructs a new `AccountHash`. * * @param v The bytes constituting the public key. */ constructor(v: Uint8Array); clType(): CLType; value(): Uint8Array; }