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