/// /// import { BinaryWriter, Hash160ContractParameterJSON, UInt160 } from '@neo-one/client-common'; import { DeserializeWireBaseOptions, SerializeJSONContext } from '../Serializable'; import { ContractParameterBase } from './ContractParameterBase'; import { ContractParameterType } from './ContractParameterType'; export declare class Hash160ContractParameter extends ContractParameterBase { static deserializeWireBase(options: DeserializeWireBaseOptions): Hash160ContractParameter; readonly type = ContractParameterType.Hash160; readonly value: UInt160; private readonly sizeInternal; constructor(value: UInt160); readonly size: number; asBuffer(): Buffer; serializeWireBase(writer: BinaryWriter): void; serializeJSON(_context: SerializeJSONContext): Hash160ContractParameterJSON; }